Skip to content

Commit

Permalink
added in final touches
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaineng committed Jan 16, 2024
1 parent 0aa0929 commit 526fb55
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
10 changes: 0 additions & 10 deletions __tests__/AuthButton.test.tsx

This file was deleted.

12 changes: 12 additions & 0 deletions __tests__/Home.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { render, screen } from "@testing-library/react";
import Home from "@/components/Home";

describe("Home", () => {
it("should have Login text", () => {
render(<Home />);

const findElem = screen.getByText("Login");

expect(findElem).toBeInTheDocument();
});
});

0 comments on commit 526fb55

Please sign in to comment.