You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`bazel test //rb/...`| Run unit, integration tests (Chrome) and lint |
218
+
|`bazel test //rb:lint`| Run RuboCop linter |
219
+
|`bazel test //rb/spec/...`| Run unit and integration tests (Chrome) |
220
+
|`bazel test --test_size_filters large //rb/...`| Run integration tests using (Chrome) |
221
+
|`bazel test //rb/spec/integration/...`| Run integration tests using (Chrome) |
222
+
|`bazel test //rb/spec/integration/... --define browser=firefox`| Run integration tests using (Firefox) |
223
+
|`bazel test //rb/spec/integration/... --define remote=true`| Run integration tests using (Chrome and Grid) |
224
+
|`bazel test //rb/spec/integration/... --define browser=firefox --define remote=true`| Run integration tests using (Firefox and Grid) |
225
+
|`bazel test --test_size_filters small //rb/...`| Run unit tests |
226
+
|`bazel test //rb/spec/unit/...`| Run unit tests |
224
227
225
228
Suffix `...` tells Bazel to run all the test targets. They are conveniently named by test file name with `_spec.rb` removed so you can run them individually:
0 commit comments