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
341 B
JavaScript
12 lines
341 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('service:encryption', 'Unit | Service | encryption', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['service:foo']
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let service = this.subject();
|
|
assert.ok(service);
|
|
});
|