started vscode tests, fixed typo
This commit is contained in:
16
vscode-desktop/main.test.ts
Normal file
16
vscode-desktop/main.test.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { describe, expect, it } from "bun:test";
|
||||
import {
|
||||
executeScriptInContainer,
|
||||
runTerraformApply,
|
||||
runTerraformInit,
|
||||
testRequiredVariables,
|
||||
} from "../test";
|
||||
|
||||
describe("vscode-desktop", async () => {
|
||||
await runTerraformInit(import.meta.dir);
|
||||
|
||||
testRequiredVariables(import.meta.dir, {
|
||||
agent_id: "foo",
|
||||
});
|
||||
|
||||
});
|
||||
@@ -16,7 +16,7 @@ variable "agent_id" {
|
||||
|
||||
variable "folder" {
|
||||
type = string
|
||||
description = "The folder to opne in VS Code."
|
||||
description = "The folder to open in VS Code."
|
||||
default = ""
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user