https://github.com/angular/angular
Raw File
Tip revision: 50623ea1e162f9424024b0393326c1442f24c7e9 authored by Pawel Kozlowski on 06 March 2024, 19:24:27 UTC
release: cut the v17.2.4 release
Tip revision: 50623ea
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