mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-10 18:26:24 +00:00

* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant * Fix accidental change to datahub user module license
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Service | foxie', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Real tests pending
|
|
test('it exists', function(assert) {
|
|
const service = this.owner.lookup('service:foxie');
|
|
assert.ok(service);
|
|
});
|
|
});
|