28 lines
901 B
Python
28 lines
901 B
Python
load("@rules_shell//shell:sh_test.bzl", "sh_test")
|
|
|
|
sh_test(
|
|
name = "phase8_ci_matrix_shape_test",
|
|
size = "small",
|
|
srcs = ["phase8_ci_matrix_shape_test.sh"],
|
|
args = ["$(location //.github/workflows:ci.yml)"],
|
|
data = ["//.github/workflows:ci.yml"],
|
|
)
|
|
|
|
sh_test(
|
|
name = "native_wrapper_shape_test",
|
|
size = "small",
|
|
srcs = ["verify_native_wrapper_shape.sh"],
|
|
args = [
|
|
"$(location //tests/binary_test:configured_launcher_bin)",
|
|
"$(location //tests/script_test:workspace_flagged_script)",
|
|
"$(location //tests/js_compat_test:compat_devserver)",
|
|
"$(location //tests/bun_test_test:configured_suite)",
|
|
],
|
|
data = [
|
|
"//tests/binary_test:configured_launcher_bin",
|
|
"//tests/bun_test_test:configured_suite",
|
|
"//tests/js_compat_test:compat_devserver",
|
|
"//tests/script_test:workspace_flagged_script",
|
|
],
|
|
)
|