Skip to content

Commit

Permalink
chore: remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
gmat224 committed Jun 8, 2024
1 parent 6132e8f commit c15c786
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions web/__test__/TestScreen.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import React from "react";
import TestScreen from "../src/screens/Test";
import { describe } from "node:test";

describe("TestScreen component", () => {
it("should display the 'Test' message", () => {
render(<TestScreen />);
const message = screen.getByText(/Test/i);
expect(message).toBeInTheDocument();
});
});
// describe("TestScreen component", () => {
// it("should display the 'Test' message", () => {
// render(<TestScreen />);
// const message = screen.getByText(/Test/i);
// expect(message).toBeInTheDocument();
// });
// });

0 comments on commit c15c786

Please sign in to comment.