This addon that adds QUnit
to the generated Ember CLI test output (in test-vendor.js
).
From within your Ember CLI application (must be > 0.0.42), run the following:
ember install ember-cli-qunit
ember generate ember-cli-qunit
If you want to turn off JSHint linting you can do the following configuration in your ember-cli-build.js
file:
var app = new EmberApp({
'babel': {
optional: ['es7.decorators']
},
'ember-cli-qunit': {
useLintTree: false
}
});