diff --git a/.eslintrc.js b/.eslintrc.js index 795298849..bd87baa9b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -27,6 +27,7 @@ module.exports = { 'testem.js', 'testem.multiple-test-page.js', 'testem.no-test-page.js', + 'testem.simple-test-page.js', 'blueprints/*/index.js', 'config/**/*.js', 'tests/dummy/config/**/*.js', diff --git a/README.md b/README.md index c935d55c7..86ad44043 100644 --- a/README.md +++ b/README.md @@ -115,10 +115,14 @@ $ ember exam --split= --partition= The `partition` option allows you to specify which test group to run after using the `split` option. It is one-indexed, so if you specify a split of 3, the last group you could run is 3 as well. You can also run multiple partitions, e.g.: ```bash -$ ember exam --split=4 --partition=1 --partition=2 +# comma delimited +$ ember exam --split=4 --partition=1,2 + +# ranged input +$ ember exam --split=4 --partition=2..4 ``` -_Note: Ember Exam splits test by modifying the Ember-CLI `TestLoader`, which means that tests are split up according to AMD modules, so it is possible to have unbalanced partitions. For more info, see [issue #60](https://github.com/trentmwillis/ember-exam/issues/60)._ +_Note: Ember Exam splits test by modifying the Ember-QUnit's `TestLoader`, which means that tests are split up according to AMD modules, so it is possible to have unbalanced partitions. For more info, see [issue #60](https://github.com/trentmwillis/ember-exam/issues/60)._