13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
|
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||
|
|
||
|
module('Unit | Service | authentication', function (hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
// TODO: Replace this with your real tests.
|
||
|
test('it exists', function (assert) {
|
||
|
const service = this.owner.lookup('service:authentication');
|
||
|
assert.ok(service);
|
||
|
});
|
||
|
});
|