test for fly-region region filter

This commit is contained in:
Stephen Kirby
2023-10-10 15:53:54 +00:00
parent f171434059
commit f7de34295f

View File

@@ -22,4 +22,12 @@ describe("fly-region", async () => {
});
expect(state.outputs.value.value).toBe("atl");
});
it("region filter", async () => {
const state = await runTerraformApply(import.meta.dir, {
default: "atl",
regions: '["arn", "ams", "bos"]'
});
expect(state.outputs.value.value).toBe("");
});
});