mirror of
https://github.com/status-im/consul.git
synced 2025-01-20 02:29:09 +00:00
b38e5df630
1. Listing, filtering by action and searching by source name and destination name 2. Edit/Create page, edits ping the API double fine, need to work through creates and deletes 3. Currently uses a `Precedence` intention keyname that doesn't yet exist in the real API
12 lines
365 B
JavaScript
12 lines
365 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:dc/intentions/create', 'Unit | Route | dc/intentions/create', {
|
|
// Specify the other units that are required for this test.
|
|
needs: ['service:intentions', 'service:feedback', 'service:flashMessages'],
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|