https://github.com/angular/angular
Raw File
Tip revision: 115aafbe51cf0ff6ca0dd47d64f944e37e5dd86b authored by Dylan Hunn on 30 March 2022, 21:09:45 UTC
release: cut the v14.0.0-next.10 release (#45484)
Tip revision: 115aafb
BUILD.bazel
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"],
)
back to top