9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { beforeEach, it, expect } from "bun:test";
|
|
beforeEach(async () => {
|
|
await Bun.sleep(100);
|
|
throw 5;
|
|
});
|
|
it("test 0", () => {
|
|
expect(1).toBe(0);
|
|
});
|