14 lines
217 B
TypeScript
14 lines
217 B
TypeScript
import { beforeAll, describe, it } from "bun:test";
|
|
|
|
describe("thing", () => {
|
|
let thing;
|
|
|
|
beforeAll(() => {
|
|
thing = () => console.log("hi!");
|
|
});
|
|
|
|
it.only("does one thing", () => {
|
|
thing();
|
|
});
|
|
});
|