test(ui): i corrected UI Testing
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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);
|
||||
});
|
||||
Reference in New Issue
Block a user