Skip to content

Commit

Permalink
chore: format tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanil committed Aug 11, 2024
1 parent 909f5c9 commit aed52c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions applications/app/src/views/home/HomeView.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { HomeView } from "./HomeView";
describe("home-view", () => {
it("exists", async () => {
render(<HomeView />);

await expect(
screen.findByText("Hello, World!"),
).resolves.toBeInTheDocument();
Expand Down
1 change: 1 addition & 0 deletions templates/react-application/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { App } from "./App";
describe("app", () => {
it("exists", async () => {
render(<App />);

await expect(
screen.findByText("Hello, World!"),
).resolves.toBeInTheDocument();
Expand Down
1 change: 1 addition & 0 deletions templates/solid-application/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { App } from "./App";
describe("app", () => {
it("exists", async () => {
render(() => <App />);

await expect(
screen.findByText("Hello, World!"),
).resolves.toBeInTheDocument();
Expand Down

0 comments on commit aed52c2

Please sign in to comment.