https://github.com/angular/angular
Raw File
Tip revision: 4f7aceacda243051b2dedb638a2c1eca740c97a4 authored by Dylan Hunn on 10 August 2022, 17:49:15 UTC
release: cut the v14.2.0-next.1 release
Tip revision: 4f7acea
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