https://github.com/angular/angular
Raw File
Tip revision: b11d3c375930103c11d9123bdb30555e2f53b380 authored by Alex Rickabaugh on 09 December 2021, 16:58:26 UTC
release: cut the v13.1.0 release (#44418)
Tip revision: b11d3c3
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