mirror of
https://github.com/etkecc/synapse-admin.git
synced 2025-02-16 11:29:48 +03:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { render, screen } from "@testing-library/react";
|
|
import App from "./App";
|
|
|
|
describe("App", () => {
|
|
it("renders", async () => {
|
|
render(<App />);
|
|
await screen.findAllByText("Welcome to Synapse-admin");
|
|
});
|
|
});
|