10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import { expect, test } from "bun:test";
|
|
|
|
// UI unit tests use Vitest, not Bun's native test runner.
|
|
// Run them with: bun run test:unit -- --run
|
|
//
|
|
// This placeholder ensures `bun test` exits 0 rather than failing with "No tests found".
|
|
test("UI tests use Vitest - run with: bun run test:unit -- --run", () => {
|
|
expect(true).toBe(true);
|
|
});
|