26 lines
500 B
Python
26 lines
500 B
Python
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*_spec.ts"],
|
|
),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/localize",
|
|
"//packages/localize/init",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
bootstrap = [
|
|
"angular/tools/testing/init_node_no_angular_spec.js",
|
|
],
|
|
deps = [
|
|
":test_lib",
|
|
"//tools/testing:node_no_angular",
|
|
],
|
|
)
|