mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Use the packaged versions of the packages instead of the local ts_project dependencies to prevent multiple versions of the deps to enter test bundles PR Close #62413
10 lines
304 B
Python
10 lines
304 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(name, tsconfig = "//devtools:tsconfig_test", **kwargs):
|
|
_ng_web_test_suite(
|
|
name = name,
|
|
tsconfig = tsconfig,
|
|
**kwargs
|
|
)
|