diff --git a/tests/testcafe/admin.test.ts b/tests/testcafe/admin.test.ts index 60eb1fd..6f1e05f 100644 --- a/tests/testcafe/admin.test.ts +++ b/tests/testcafe/admin.test.ts @@ -5,17 +5,6 @@ */ import { Selector, ClientFunction } from "testcafe"; -fixture`Admin page renders and functions correctly`.page("http://localhost:3000/admin"); - -test("Header contains text \"Admin panel\"", async t => { - /** - * Test if the header contains the text. - */ - const header = Selector(".heading"); - await t.expect(header.textContent) - .contains("Admin panel"); -}); - fixture`Admin login page functions correctly`.page("http://localhost:3000/admin/login"); test("Login form exists", async t => {