started vscode tests, fixed typo

pull/84/head
Stephen Kirby 2 years ago
parent 1317bbdf51
commit f320040093

@ -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 = ""
}

Loading…
Cancel
Save