mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
27 lines
668 B
Text
27 lines
668 B
Text
load("//tools:defaults.bzl", "ts_project", "zoneless_jasmine_test")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.spec.ts"]),
|
|
deps = [
|
|
"//:node_modules/zod",
|
|
"//packages/common/http",
|
|
"//packages/common/http/testing",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/forms",
|
|
"//packages/forms/signals",
|
|
"//packages/forms/signals/compat",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser/testing",
|
|
"//packages/private/testing",
|
|
],
|
|
)
|
|
|
|
zoneless_jasmine_test(
|
|
name = "test",
|
|
data = [
|
|
":test_lib",
|
|
],
|
|
)
|