mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 10:46:52 +00:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
![]() |
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
|
||
|
module('Unit | Service | user-settings', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
// Real tests pending
|
||
|
test('it exists', function(assert) {
|
||
|
const service = this.owner.lookup('service:user-settings');
|
||
|
assert.ok(service);
|
||
|
});
|
||
|
});
|