mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
25 lines
594 B
Text
25 lines
594 B
Text
load("//tools:defaults.bzl", "ng_web_test_suite", "ts_project")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
# Visible to //:saucelabs_unit_tests_poc target
|
|
visibility = ["//:__pkg__"],
|
|
deps = [
|
|
"//:node_modules/jasmine-core",
|
|
"//:node_modules/rxjs",
|
|
"//packages/common",
|
|
"//packages/common/http",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/misc/angular-in-memory-web-api",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "test_web",
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|