mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
24 lines
532 B
Text
24 lines
532 B
Text
load("//tools:defaults.bzl", "ng_web_test_suite", "ts_project")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//:node_modules/rxjs",
|
|
"//:node_modules/zone.js",
|
|
"//packages/compiler",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/elements",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser/testing",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "test",
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|