From 3e9b6dcec56949a946428e1182475e211cb6829c Mon Sep 17 00:00:00 2001 From: Thanh Phong Date: Sun, 17 Nov 2024 18:20:39 +0700 Subject: [PATCH] Test: remove unused --- src/components/Layouts/Header/header.test.tsx | 23 ------------------- 1 file changed, 23 deletions(-) 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(); - // }); });