mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Sets up the test targets for integration tests with the new rule. The targets will match the configuration of the previous integration test setup (through the dictionary in a `bzl` file). Note: We already add `setup_chromium` based on whether Chromium tests run as part of this integration test. In a follow-up commit we can then remove puppeteer and rely on the Bazel-managed version of Chromium. PR Close #44238
9 lines
393 B
Text
9 lines
393 B
Text
load("//integration:index.bzl", "ng_integration_test")
|
|
|
|
ng_integration_test(
|
|
name = "test",
|
|
# This test relies on ESM for running the app in SSR. RxJS added ESM resolution
|
|
# support with RXJS v7. We allow the version to be pinned to v7.
|
|
# TODO: Remove this and update the test once the project uses RxJS v7, or if rxjs v6 has ESM support.
|
|
pinned_npm_packages = ["rxjs"],
|
|
)
|