test: don't run unit tests on Firefox (#23942)

PR Close #23942
This commit is contained in:
Alex Eagle 2018-05-16 10:10:57 -07:00 committed by Matias Niemelä
parent 55103419e9
commit 43597279d6
1 changed files with 6 additions and 2 deletions

View File

@ -79,12 +79,16 @@ def ts_web_test_suite(bootstrap = [], deps = [], **kwargs):
_ts_web_test_suite(
bootstrap = bootstrap,
deps = local_deps,
# Run unit tests on Chromium and Firefox by default.
# Run unit tests on local Chromium by default.
# You can exclude tests based on tags, e.g. to skip Firefox testing,
# `bazel test --test_tag_filters=-browser:firefox-local [targets]`
browsers = [
"@io_bazel_rules_webtesting//browsers:chromium-local",
"@io_bazel_rules_webtesting//browsers:firefox-local",
# Don't test on local Firefox by default, for faster builds.
# We think that bugs in Angular tend to be caught the same in any
# evergreen browser.
# "@io_bazel_rules_webtesting//browsers:firefox-local",
# TODO(alexeagle): add remote browsers on SauceLabs
],
**kwargs)