Skip to content

Commit

Permalink
fix(docs): run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarm committed Apr 18, 2023
1 parent 6a6bacf commit 6026466
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/docs/cdktf/test/unit-tests.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ describe("Unit testing using assertions", () => {
const stack = new MyApplicationsAbstraction(app, "my-app", {});
const synthesized = Testing.synth(stack);
expect(synthesized).toHaveResourceWithProperties(Image, { name: "ubuntu:latest" });
expect(synthesized).toHaveResourceWithProperties(Image, {
name: "ubuntu:latest",
});
});
});
```
Expand Down

0 comments on commit 6026466

Please sign in to comment.