mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Disabling firefox tests in devtools until we can get them working on OS X as expected PR Close #62504
18 lines
650 B
Python
18 lines
650 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(
|
|
# TODO: Reenable firefox tests once spaces in file paths are not a problem
|
|
firefox = False,
|
|
deps = deps,
|
|
tsconfig = "//devtools:tsconfig_test",
|
|
**kwargs
|
|
)
|