9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { beforeEach, test } from "bun:test";
|
|
|
|
beforeEach(() => {
|
|
throw new Error("beforeEach");
|
|
});
|
|
|
|
test("test 0", () => {});
|
|
test("test 1", () => {});
|