mirror of https://github.com/hashicorp/consul
13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|||
|
|||
moduleFor('service:repository/node', 'Unit | Service | node', {
|
|||
// Specify the other units that are required for this test.
|
|||
needs: ['service:repository/coordinate'],
|
|||
});
|
|||
|
|||
// Replace this with your real tests.
|
|||
test('it exists', function(assert) {
|
|||
let service = this.subject();
|
|||
assert.ok(service);
|
|||
});
|