mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Only use the builds from the workspace as for the bootstrap scripts for web testing PR Close #62443
16 lines
542 B
Python
16 lines
542 B
Python
# Re-export of Bazel rules with devtools-wide defaults
|
|
|
|
load("//tools:defaults2.bzl", _ng_web_test_suite = "ng_web_test_suite")
|
|
|
|
def ng_web_test_suite(deps = [], **kwargs):
|
|
# Provide required modules for the imports in //tools/testing/browser_tests.init.mts
|
|
deps = deps + [
|
|
"//:node_modules/@angular/compiler",
|
|
"//:node_modules/@angular/core",
|
|
"//:node_modules/@angular/platform-browser",
|
|
]
|
|
_ng_web_test_suite(
|
|
deps = deps,
|
|
tsconfig = "//devtools:tsconfig_test",
|
|
**kwargs
|
|
)
|