prep for merge

This commit is contained in:
Stephen Kirby
2023-10-10 15:57:44 +00:00
parent f7de34295f
commit 8eec58ed9b
4 changed files with 48 additions and 31 deletions

15
dotfiles/main.test.ts Normal file
View File

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