6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
import { expect, test } from "bun:test";
|
|
|
|
test("failing suite", () => {
|
|
expect(1 + 1).toBe(3);
|
|
});
|