2020-02-08 15:14:12 +03:00
|
|
|
import React from "react";
|
2024-04-16 13:45:39 +03:00
|
|
|
import { render, screen } from "@testing-library/react";
|
2020-02-08 15:14:12 +03:00
|
|
|
import App from "./App";
|
|
|
|
|
|
|
|
describe("App", () => {
|
2024-04-16 13:45:39 +03:00
|
|
|
it("renders", async () => {
|
2021-05-04 20:12:49 +03:00
|
|
|
render(<App />);
|
2024-04-16 13:45:39 +03:00
|
|
|
await screen.findAllByText("Welcome to Synapse-admin");
|
2020-02-08 15:14:12 +03:00
|
|
|
});
|
|
|
|
});
|