Files

10 lines
178 B
TypeScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import { describe, it, expect } from "bun:test";
describe.only("only", () => {
describe.todo("todo", () => {
it("fail", () => {
expect(2).toBe(3);
});
});
});