Files
rules_bun/tests/bun_test_test/passing.test.ts
2026-03-04 20:31:57 +01:00

6 lines
101 B
TypeScript

import { expect, test } from "bun:test";
test("passing suite", () => {
expect(1 + 1).toBe(2);
});