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

18 lines
424 B
JavaScript
Raw Normal View History

import { moduleFor, test } from 'ember-qunit';
moduleFor('route:dc/intentions/edit', 'Unit | Route | dc/intentions/edit', {
// Specify the other units that are required for this test.
2018-06-14 10:14:06 +00:00
needs: [
'service:services',
'service:intentions',
'service:feedback',
'service:logger',
'service:flashMessages',
],
});
test('it exists', function(assert) {
let route = this.subject();
assert.ok(route);
});