mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
19 lines
535 B
TypeScript
19 lines
535 B
TypeScript
import { render, screen } from "@testing-library/react";
|
|
import Home from "@/app/page";
|
|
import '@testing-library/jest-dom'
|
|
|
|
describe("Test Setup", () => {
|
|
it("should be true", () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|
|
|
|
// describe("Home Component", () => {
|
|
// it("renders without crashing", () => {
|
|
// render(<Home />);
|
|
|
|
// // Check if a key element is present, like the page title
|
|
// // expect(screen.getByText("Explore the world of ventures")).toBeInTheDocument();
|
|
// expect(true).toBe(true);
|
|
// });
|
|
// });
|