2018-05-22 15:03:45 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
|
2018-10-26 16:36:15 +00:00
|
|
|
moduleFor('service:repository', 'Unit | Service | repository', {
|
2018-05-22 15:03:45 +00:00
|
|
|
// 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);
|
|
|
|
});
|