placeholder test for jupyterlab with pip

This commit is contained in:
Stephen Kirby
2023-10-10 17:40:43 +00:00
parent a83cd5b140
commit 2f248dd91f
3 changed files with 29 additions and 37 deletions

15
code-server/main.test.ts Normal file
View File

@@ -0,0 +1,15 @@
import { describe, expect, it } from "bun:test";
import {
executeScriptInContainer,
runTerraformApply,
runTerraformInit,
testRequiredVariables,
} from "../test";
describe("code-server", async () => {
await runTerraformInit(import.meta.dir);
testRequiredVariables(import.meta.dir, {
agent_id: "foo",
});
});