open-consul/ui-v2/tests/unit/routes/dc/intentions/index-test.js

17 lines
412 B
JavaScript
Raw Normal View History

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.
needs: [
'service:repository/intention',
'service:feedback',
'service:logger',
'service:flashMessages',
],
});
test('it exists', function(assert) {
let route = this.subject();
assert.ok(route);
});