angular/packages/core/rxjs-interop/test/BUILD.bazel
David Kingma 0812ac3bec refactor(core): add debugName option to rxjs-interop toSignal
toSignal predates the debugName option for signals to name the signals in the Angular dev-tools This adds the debugName option to toSignal.
2025-11-20 10:49:50 -05:00

29 lines
586 B
Text

load("//tools:defaults.bzl", "angular_jasmine_test", "ng_web_test_suite", "ts_project")
ts_project(
name = "test_lib",
testonly = True,
srcs = glob(["**/*.ts"]),
deps = [
"//:node_modules/rxjs",
"//packages/core",
"//packages/core/primitives/signals",
"//packages/core/rxjs-interop",
"//packages/core/testing",
"//packages/private/testing",
],
)
angular_jasmine_test(
name = "test",
data = [
":test_lib",
],
)
ng_web_test_suite(
name = "test_web",
deps = [
":test_lib",
],
)