2018-05-22 15:03:45 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
|
|
|
|
moduleFor('route:dc/intentions/index', 'Unit | Route | dc/intentions/index', {
|
|
|
|
// Specify the other units that are required for this test.
|
2018-10-26 16:36:15 +00:00
|
|
|
needs: [
|
|
|
|
'service:repository/intention',
|
|
|
|
'service:feedback',
|
|
|
|
'service:logger',
|
|
|
|
'service:flashMessages',
|
|
|
|
],
|
2018-05-22 15:03:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('it exists', function(assert) {
|
|
|
|
let route = this.subject();
|
|
|
|
assert.ok(route);
|
|
|
|
});
|