linstrom/frontend-reactive/tests/unit/services/authentication-test.ts

13 lines
367 B
TypeScript
Raw Permalink Normal View History

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);
});
});