24 lines
544 B
Python
24 lines
544 B
Python
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
|
||
|
|
||
|
ts_library(
|
||
|
name = "test_lib",
|
||
|
testonly = True,
|
||
|
srcs = glob(["**/*.ts"]),
|
||
|
deps = [
|
||
|
"//packages/common",
|
||
|
"//packages/common/upgrade",
|
||
|
"//packages/common/testing",
|
||
|
"//packages/core/testing",
|
||
|
"//packages/upgrade/static",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
jasmine_node_test(
|
||
|
name = "test",
|
||
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
||
|
deps = [
|
||
|
":test_lib",
|
||
|
"//tools/testing:node",
|
||
|
],
|
||
|
)
|