added tests that don't depend on shebang

This commit is contained in:
Stephen Kirby
2023-10-10 17:50:37 +00:00
parent 2f248dd91f
commit ac5c275d8d
3 changed files with 5 additions and 11 deletions

View File

@@ -1,10 +1,5 @@
import { describe, expect, it } from "bun:test";
import {
executeScriptInContainer,
runTerraformApply,
runTerraformInit,
testRequiredVariables,
} from "../test";
import { runTerraformInit, testRequiredVariables } from "../test";
describe("code-server", async () => {
await runTerraformInit(import.meta.dir);
@@ -12,4 +7,6 @@ describe("code-server", async () => {
testRequiredVariables(import.meta.dir, {
agent_id: "foo",
});
// More tests depend on shebang refactors
});