Files

8 lines
158 B
TypeScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import { describe, expect, test } from "bun:test";
describe.each(["foo", "bar"])("%s", () => {
test.only("works", () => {
expect(1).toBe(1);
});
});