mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
4b3b149ba1
Transition to zoneless.
25 lines
530 B
Python
25 lines
530 B
Python
load("//tools:defaults.bzl", "ts_project", "zoneless_jasmine_test")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//:node_modules/protractor",
|
|
"//packages:types",
|
|
"//packages/benchpress",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|
|
|
|
zoneless_jasmine_test(
|
|
name = "test",
|
|
data = [
|
|
":test_lib",
|
|
"//:node_modules/protractor",
|
|
"//packages/benchpress",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|