[#1] Bare Skeleton with redux store, oidc and router-dom
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import { screen } from "@testing-library/react";
|
||||
import App from "../src/App";
|
||||
import { JSX } from "react/jsx-runtime";
|
||||
|
||||
test("renders learn react link", () => {
|
||||
renderWithProviders(<App />);
|
||||
const linkElement = screen.getByText("Twake");
|
||||
expect(linkElement).toBeInTheDocument();
|
||||
});
|
||||
function renderWithProviders(arg0: JSX.Element) {
|
||||
throw new Error("Function not implemented.");
|
||||
}
|
||||
Reference in New Issue
Block a user