JS frontend stuff
Move old ember frontend to properly named folder Add vue based new frontend
This commit is contained in:
parent
8947d97825
commit
88398334fe
254 changed files with 837 additions and 0 deletions
12
frontend-old-ember/tests/unit/services/auth-test.ts
Normal file
12
frontend-old-ember/tests/unit/services/auth-test.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { module, test } from 'qunit';
|
||||
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||
|
||||
module('Unit | Service | auth', function (hooks) {
|
||||
setupTest(hooks);
|
||||
|
||||
// TODO: Replace this with your real tests.
|
||||
test('it exists', function (assert) {
|
||||
const service = this.owner.lookup('service:auth');
|
||||
assert.ok(service);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,12 @@
|
|||
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);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue