test(git-config): use booleans

pull/252/head
Michael Brewer 1 year ago
parent fab10eb675
commit 26a87282cf
No known key found for this signature in database
GPG Key ID: D7A137BA1254AFC7

Binary file not shown.

@ -13,11 +13,15 @@ describe("git-config", async () => {
}); });
it("can run apply allow_username_change and allow_email_change disabled", async () => { it("can run apply allow_username_change and allow_email_change disabled", async () => {
const state = await runTerraformApply(import.meta.dir, { const state = await runTerraformApply(
agent_id: "foo", import.meta.dir,
allow_username_change: "false", {
allow_email_change: "false", agent_id: "foo",
}); allow_username_change: false,
allow_email_change: false,
},
{},
);
const resources = state.resources; const resources = state.resources;
expect(resources).toHaveLength(3); expect(resources).toHaveLength(3);

Loading…
Cancel
Save