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
Long time ago linters were run as tests. And ember-exam was splitting
tests into partitions in lint aware style because linting tests are much
faster than regular tests.
Nowadays we don't run linters as tests and this feature is no longer
necessary. Remove it from the code to avoid the confusion of the future
generations.
The initial driver for this change was a failing test which was
complaining on something related to jshint and potentially it was caused
by removal of jshint support from ember-cli.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,7 +288,7 @@ $ ember exam --file-path='/my-application/tests/unit/*.js'
288
288
$ ember exam --parallel=<num> --load-balance
289
289
```
290
290
291
-
The `load-balance` option allows you to load balance test files against multiple browsers. It will order the test files by test types, e.g. acceptance | integration | unit | eslint, and load balance the ordered test files between the browsers dynamically rather than statically.
291
+
The `load-balance` option allows you to load balance test files against multiple browsers. It will order the test files by test types, e.g. acceptance | integration | unit, and load balance the ordered test files between the browsers dynamically rather than statically.
292
292
**Note:** parallel must be used along with load-balance to specify a number of browser(s)
293
293
294
294
The `load-balance` option was added to version 1.1 to address execution performance when running against a large test suite.
Copy file name to clipboardExpand all lines: tests/dummy/app/templates/docs/load-balancing.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
ember exam --parallel=<num> --load-balance
5
5
```
6
6
7
-
The `load-balance` option allows you to load balance test files against multiple browsers. It will order the test files by test types, e.g. acceptance | integration | unit | eslint, and load balance the ordered test files between the browsers dynamically rather than statically.
7
+
The `load-balance` option allows you to load balance test files against multiple browsers. It will order the test files by test types, e.g. acceptance | integration | unit, and load balance the ordered test files between the browsers dynamically rather than statically.
8
8
**Note:** parallel must be used along with load-balance to specify a number of browser(s)
9
9
10
10
The `load-balance` option was added to version 1.1 to address execution performance when running against a large test suite.
0 commit comments