mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a1441a432d
Having zone.js here already wasn't necessary.
23 lines
424 B
Python
23 lines
424 B
Python
load("//tools:defaults.bzl", "ts_project", "zoneless_jasmine_test")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler/test/expression_parser/utils",
|
|
"//packages/core",
|
|
],
|
|
)
|
|
|
|
zoneless_jasmine_test(
|
|
name = "test",
|
|
data = [
|
|
":test_lib",
|
|
],
|
|
)
|