We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dafac64 commit 6e0a4a2Copy full SHA for 6e0a4a2
packages/cdktf-cli/src/test/ui/synth.test.tsx
@@ -13,7 +13,7 @@ test("SynthOutput", () => {
13
const { lastFrame } = render(
14
<React.Fragment>
15
<SynthOutput stacks={[]} />,
16
- </React.Fragment>
+ </React.Fragment>,
17
);
18
expect(stripAnsi(lastFrame())).toBe("No stacks found in configuration.");
19
{
@@ -25,10 +25,10 @@ test("SynthOutput", () => {
25
26
27
<SynthOutput stacks={multipleStacks} />,
28
29
30
expect(stripAnsi(lastFrame())).toBe(
31
- "Generated Terraform code for the stacks: stack1, stack2"
+ "Generated Terraform code for the stacks: stack1, stack2",
32
33
}
34
});
0 commit comments