13 lines
204 B
Python
13 lines
204 B
Python
load("//bun:defs.bzl", "bun_test")
|
|
|
|
bun_test(
|
|
name = "passing_suite",
|
|
srcs = ["passing.test.ts"],
|
|
)
|
|
|
|
bun_test(
|
|
name = "failing_suite",
|
|
srcs = ["failing.test.ts"],
|
|
tags = ["manual"],
|
|
)
|