fix: harden bun_test launcher args and test metadata

Co-authored-by: Eriyc <50216491+Eriyc@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-04 03:22:58 +00:00
parent 894dca72a0
commit 07b97a6e1e
4 changed files with 13 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import { expect, test } from "bun:test";
test("passing suite", () => {
test("adds two numbers correctly", () => {
expect(1 + 1).toBe(2);
});