diff --git a/vscode-desktop/main.test.ts b/vscode-desktop/main.test.ts new file mode 100644 index 0000000..dfcd904 --- /dev/null +++ b/vscode-desktop/main.test.ts @@ -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", + }); + +}); diff --git a/vscode-desktop/main.tf b/vscode-desktop/main.tf index 9edae25..fa161fb 100644 --- a/vscode-desktop/main.tf +++ b/vscode-desktop/main.tf @@ -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 = "" }