Skip to content

Commit

Permalink
Fix App test
Browse files Browse the repository at this point in the history
Change-Id: Iacaa6f5e70925b857f24554e6aba64234b1cae44
  • Loading branch information
awesome-manuel committed Apr 17, 2024
1 parent f6e193c commit 37e1fcc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.test.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from "react";
import { render } from "@testing-library/react";
import { render, screen } from "@testing-library/react";
import App from "./App";

describe("App", () => {
it("renders", () => {
it("renders", async () => {
render(<App />);
await screen.findAllByText("Welcome to Synapse-admin");
});
});

0 comments on commit 37e1fcc

Please sign in to comment.