diff --git a/src/components/Layouts/Header/header.test.tsx b/src/components/Layouts/Header/header.test.tsx index 8a8fd84..4b9524e 100644 --- a/src/components/Layouts/Header/header.test.tsx +++ b/src/components/Layouts/Header/header.test.tsx @@ -9,27 +9,4 @@ describe("Render Header", () => { expect(tree).toMatchSnapshot(); }); }); - - // it("Should contain correct Header content",async () => { - // const tree = render(
); - - // waitFor(() => { - // expect(logo).toBeInTheDocument(); - // }) - - // const logo = tree.getByTestId("Logo"); - // expect(logo).toBeInTheDocument(); - - // const navbar = tree.getByTestId("navbar"); - // expect(navbar).toBeInTheDocument(); - - // const theme_togger = tree.getByTestId("theme-togger"); - // expect(theme_togger).toBeInTheDocument(); - - // const verticalLine = tree.getByTestId("vt"); - // expect(verticalLine).toBeInTheDocument(); - - // const github = tree.getByTestId("github-logo"); - // expect(github).toBeInTheDocument(); - // }); });