feat: add phase 4 bun_test bootstrap

This commit is contained in:
Eriyc
2026-03-04 03:19:28 +00:00
committed by copilot-swe-agent[bot]
parent a6ceae7e64
commit c86719777d
6 changed files with 94 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
load("//bun:defs.bzl", "bun_test")
bun_test(
name = "passing_suite",
srcs = ["passing.test.ts"],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)
bun_test(
name = "failing_suite",
srcs = ["failing.test.ts"],
target_compatible_with = [
"@platforms//cpu:x86_64",
"@platforms//os:linux",
],
)