angular/packages/common/http/testing/test/BUILD.bazel
Joey Perrott cbc258eec8 build: remove ts_project_interop infrastructure (#62908)
Remove the interop macros and final usages

PR Close #62908
2025-07-31 09:12:58 +00:00

31 lines
615 B
Text

load("//tools:defaults2.bzl", "angular_jasmine_test", "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/rxjs",
"//packages/common/http",
"//packages/common/http/testing",
"//packages/private/testing",
],
)
angular_jasmine_test(
name = "test",
data = [
":test_lib",
],
)
ng_web_test_suite(
name = "test_web",
deps = [
":test_lib",
],
)