cc00c6c6ae
Sets up toolchain pinning, format/lint (Biome + Spotless), lefthook pre-commit hooks, Docker Compose for Postgres, and trivial passing tests for both stacks. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { render, screen } from "@testing-library/react";
|
|
import { describe, expect, it } from "vitest";
|
|
import App from "../src/App";
|
|
|
|
describe("App", () => {
|
|
it("renders a main element", () => {
|
|
render(<App />);
|
|
expect(screen.getByRole("main")).toBeDefined();
|
|
});
|
|
});
|