https://github.com/angular/angular
Raw File
Tip revision: 42ce3ac0080bc2b93243f161db4d1a99adb5610c authored by Andrew Scott on 12 January 2022, 19:21:10 UTC
release: cut the v13.2.0-next.2 release (#44701)
Tip revision: 42ce3ac
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