mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f201df9b83
Use the new jasmine_test based on rules_js instead of jasmine_node_test from rules_nodejs PR Close #62106
25 lines
462 B
Python
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",
|
|
],
|
|
)
|