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
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('validator:valid-collection', 'Unit | Validator | valid-collection', {
|
|
needs: ['validator:messages']
|
|
});
|
|
|
|
test('it works', function(assert) {
|
|
let validator = this.subject();
|
|
assert.ok(validator);
|
|
});
|