96ea5b799a
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
13 lines
341 B
JavaScript
13 lines
341 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('service:intentions', 'Unit | Service | intentions', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['service:foo']
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let service = this.subject();
|
|
assert.ok(service);
|
|
});
|