Improved test reporter for ember-cli-mocha.
To add to your project:
ember install ember-cli-mocha
ember install ember-cli-mocha-reporter
Edit your tests/test-helper.js
to add:
import { mocha } from 'ember-mocha';
import Reporter from './helpers/ember-cli-mocha-reporter';
// ...
mocha.reporter(Reporter);
This adds the following features to ember-cli-mocha:
- Ember application container does not cover tests and slides in on hover (ef4)
- Code coverage support via ember-cli-blanket (SaladFork)
- No try/catch support so you can more easily debug your tests (lolmaus)
I fixed the following issues:
- Made a proper Ember-CLI addon with minimal edits required to your project
- No longer requires a custom Bower install of the url.js library
- Fixed to work with the current url.js library as an NPM dependency
- Don't scale the progress canvas
This is based on the following code: