mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-09 16:24:51 +00:00
Fix App test
Change-Id: Iacaa6f5e70925b857f24554e6aba64234b1cae44
This commit is contained in:
parent
f6e193c51c
commit
37e1fcc96d
1 changed files with 3 additions and 2 deletions
|
@ -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");
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue