mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 17:52:17 +00:00
300a52f5ae
ui: UI Release Merge (1.8-beta-3: ui-staging merge)
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Service | sort', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let service = this.owner.lookup('service:sort');
|
|
assert.ok(service);
|
|
});
|
|
});
|