Files
Joey Perrott f201df9b83 build: migrate to using new jasmine_test (#62106)
Use the new jasmine_test based on rules_js instead of jasmine_node_test from rules_nodejs

PR Close #62106
2025-06-18 17:59:50 +02:00

25 lines
462 B
Python

load("//tools:defaults2.bzl", "jasmine_test", "ts_project")
ts_project(
name = "test_lib",
testonly = True,
srcs = glob(
["**/*_spec.ts"],
),
interop_deps = [
"//packages:types",
],
deps = [
"//packages/localize:localize_rjs",
"//packages/localize/init:init_rjs",
"//packages/localize/src/utils:utils_rjs",
],
)
jasmine_test(
name = "test",
data = [
":test_lib",
],
)