added tests for vscode-web

This commit is contained in:
Stephen Kirby
2023-10-10 16:42:39 +00:00
parent 1823248fd3
commit 1317bbdf51
3 changed files with 74 additions and 1 deletions

View File

@@ -12,4 +12,10 @@ describe("dotfiles", async () => {
agent_id: "foo",
});
it("default output", async () => {
const state = await runTerraformApply(import.meta.dir, {
agent_id: "foo",
});
expect(state.outputs.dotfiles_uri.value).toBe("");
});
});