angular/packages/animations/browser/test/BUILD.bazel
Paul Gschwendtner e877272a38 refactor: update animations tests to work with ESM output (#48521)
The circular deps tests should use the `.mjs` output.

PR Close #48521
2022-12-19 19:50:42 +00:00

44 lines
1.1 KiB
Text

load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
load("//tools/circular_dependency_test:index.bzl", "circular_dependency_test")
circular_dependency_test(
name = "circular_deps_test",
entry_point = "angular/packages/animations/browser/index.mjs",
deps = ["//packages/animations/browser"],
)
circular_dependency_test(
name = "testing_circular_deps_test",
entry_point = "angular/packages/animations/browser/testing/index.mjs",
deps = ["//packages/animations/browser/testing"],
)
ts_library(
name = "test_lib",
testonly = True,
srcs = glob(["**/*.ts"]),
deps = [
"//packages:types",
"//packages/animations",
"//packages/animations/browser",
"//packages/animations/browser/testing",
"//packages/core",
"//packages/core/testing",
"//packages/platform-browser/testing",
],
)
jasmine_node_test(
name = "test",
bootstrap = ["//tools/testing:node"],
deps = [
":test_lib",
],
)
karma_web_test_suite(
name = "test_web",
deps = [
":test_lib",
],
)