682e6a658e
> helpers/poll-has-users.js should pass jscs. > requireSemicolons: Missing semicolon after statement at helpers/poll-has-users.js is incostitent with JSHint which complains about this semicolon other ones should be fixed by rewrite of create/options
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('controller:error', 'Unit | Controller | error', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['controller:foo']
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let controller = this.subject();
|
|
assert.ok(controller);
|
|
});
|