|
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Route | dc/nodes/index', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.owner.lookup('route:dc/nodes/index');
|
|
assert.ok(route);
|
|
});
|
|
});
|