diff --git a/bun.lockb b/bun.lockb index d3e2214..0c42f3c 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/git-config/main.test.ts b/git-config/main.test.ts index fe410aa..8da34d0 100644 --- a/git-config/main.test.ts +++ b/git-config/main.test.ts @@ -13,11 +13,15 @@ describe("git-config", async () => { }); it("can run apply allow_username_change and allow_email_change disabled", async () => { - const state = await runTerraformApply(import.meta.dir, { - agent_id: "foo", - allow_username_change: "false", - allow_email_change: "false", - }); + const state = await runTerraformApply( + import.meta.dir, + { + agent_id: "foo", + allow_username_change: false, + allow_email_change: false, + }, + {}, + ); const resources = state.resources; expect(resources).toHaveLength(3);