build: add karma-sauce-launcher dependency for karma_web_test macro (#34220)
Currently our bazel saucelabs tests silently fail as it does not have karma-sauce-launcher available from npm. By providing it as expected we will properly run the bazel saucelabs tests once more PR Close #34220
This commit is contained in:
parent
c4ce24647b
commit
5e94f9a100
|
@ -182,6 +182,7 @@ def karma_web_test(bootstrap = [], deps = [], data = [], runtime_deps = [], **kw
|
|||
bootstrap = ["//:web_test_bootstrap_scripts"]
|
||||
local_deps = [
|
||||
"@npm//karma-browserstack-launcher",
|
||||
"@npm//karma-sauce-launcher",
|
||||
"@npm//:node_modules/tslib/tslib.js",
|
||||
"//tools/rxjs:rxjs_umd_modules",
|
||||
"//packages/zone.js:npm_package",
|
||||
|
|
Loading…
Reference in New Issue