mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This updates the enter and leave logic to use the stored LView data to dispatch the enter and leave animations at the right points in the lifecycle. This should fix issues with signals not being available yet, parallel animations, and also eliminate the need for the element registry. fixes: #63391 fixes: #63388 fixes: #63369 PR Close #63710
74 lines
2.2 KiB
Text
74 lines
2.2 KiB
Text
load("//tools:defaults.bzl", "angular_jasmine_test", "ng_project", "ng_web_test_suite", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
SPEC_FILES_WITH_FORWARD_REFS = [
|
|
"di_forward_ref_spec.ts",
|
|
]
|
|
|
|
ts_project(
|
|
name = "acceptance_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = SPEC_FILES_WITH_FORWARD_REFS,
|
|
),
|
|
# Visible to //:saucelabs_unit_tests
|
|
visibility = ["//:__pkg__"],
|
|
deps = [
|
|
"//:node_modules/rxjs",
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
"//packages/animations/browser/testing",
|
|
"//packages/common",
|
|
"//packages/common/locales",
|
|
"//packages/compiler",
|
|
"//packages/core",
|
|
"//packages/core/primitives/signals",
|
|
"//packages/core/src/di/interface",
|
|
"//packages/core/src/util",
|
|
"//packages/core/test/animation_utils",
|
|
"//packages/core/test/render3:matchers",
|
|
"//packages/core/testing",
|
|
"//packages/localize",
|
|
"//packages/localize/init",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser/animations",
|
|
"//packages/platform-browser/testing",
|
|
"//packages/platform-server",
|
|
"//packages/private/testing",
|
|
"//packages/router",
|
|
],
|
|
)
|
|
|
|
# Note: The `forward_ref` example tests are built through this `ng_project` sub-target.
|
|
# This is done so that DI decorator/type metadata is processed manually by the compiler
|
|
# ahead of time. We cannot rely on the official TypeScript decorator downlevel emit (for JIT),
|
|
# as the output is not compatible with `forwardRef` and ES2015+. More details here:
|
|
# https://github.com/angular/angular/commit/323651bd38909b0f4226bcb6c8f5abafa91cf9d9.
|
|
# https://github.com/microsoft/TypeScript/issues/27519.
|
|
ng_project(
|
|
name = "forward_ref_test_lib",
|
|
testonly = True,
|
|
srcs = SPEC_FILES_WITH_FORWARD_REFS,
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|
|
|
|
angular_jasmine_test(
|
|
name = "acceptance",
|
|
data = [
|
|
":acceptance_lib",
|
|
":forward_ref_test_lib",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "acceptance_web",
|
|
deps = [
|
|
":acceptance_lib",
|
|
":forward_ref_test_lib",
|
|
],
|
|
)
|