Files
Joey Perrott 875ea30d6b build: remove ts_project_interop infrastructure (#62909)
Remove the interop macros and final usages

PR Close #62909
2025-07-31 09:14:25 +00:00

38 lines
676 B
Python

load("//tools:defaults2.bzl", "angular_jasmine_test", "ng_web_test_suite", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "test_lib",
testonly = True,
srcs = glob(["**/*.spec.ts"]),
deps = [
"//packages/common",
"//packages/core",
"//packages/core/testing",
"//packages/router",
"//packages/router/testing",
],
)
angular_jasmine_test(
name = "test",
data = [
":test_lib",
],
)
ng_web_test_suite(
name = "test_web",
deps = [
":test_lib",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"**/*.ts",
]),
)