Skip to content

Commit 6e0a4a2

Browse files
fix prettier
1 parent dafac64 commit 6e0a4a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cdktf-cli/src/test/ui/synth.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test("SynthOutput", () => {
1313
const { lastFrame } = render(
1414
<React.Fragment>
1515
<SynthOutput stacks={[]} />,
16-
</React.Fragment>
16+
</React.Fragment>,
1717
);
1818
expect(stripAnsi(lastFrame())).toBe("No stacks found in configuration.");
1919
{
@@ -25,10 +25,10 @@ test("SynthOutput", () => {
2525
const { lastFrame } = render(
2626
<React.Fragment>
2727
<SynthOutput stacks={multipleStacks} />,
28-
</React.Fragment>
28+
</React.Fragment>,
2929
);
3030
expect(stripAnsi(lastFrame())).toBe(
31-
"Generated Terraform code for the stacks: stack1, stack2"
31+
"Generated Terraform code for the stacks: stack1, stack2",
3232
);
3333
}
3434
});

0 commit comments

Comments
 (0)