Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
✅ Add an empty test
Browse files Browse the repository at this point in the history
  • Loading branch information
mahata committed Nov 29, 2024
1 parent 8a4f74d commit c263380
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/page/LoginPage/LoginPage.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import LoginPage from "@/page/LoginPage/LoginPage";
import { render, screen } from "@testing-library/react";

it("shows Login text", () => {
render(<LoginPage />);
expect(screen.getByText("Login")).toBeVisible();
});

0 comments on commit c263380

Please sign in to comment.