Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit f320040

Browse files
committed
started vscode tests, fixed typo
1 parent 1317bbd commit f320040

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

vscode-desktop/main.test.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { describe, expect, it } from "bun:test";
2+
import {
3+
executeScriptInContainer,
4+
runTerraformApply,
5+
runTerraformInit,
6+
testRequiredVariables,
7+
} from "../test";
8+
9+
describe("vscode-desktop", async () => {
10+
await runTerraformInit(import.meta.dir);
11+
12+
testRequiredVariables(import.meta.dir, {
13+
agent_id: "foo",
14+
});
15+
16+
});

vscode-desktop/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variable "agent_id" {
1616

1717
variable "folder" {
1818
type = string
19-
description = "The folder to opne in VS Code."
19+
description = "The folder to open in VS Code."
2020
default = ""
2121
}
2222

0 commit comments

Comments
 (0)