More work on post registration form
This commit is contained in:
parent
952949b609
commit
8b03454d6f
27 changed files with 247 additions and 51 deletions
11
frontend-reactive/tests/unit/routes/auth-test.ts
Normal file
11
frontend-reactive/tests/unit/routes/auth-test.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { module, test } from 'qunit';
|
||||
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||
|
||||
module('Unit | Route | auth', function (hooks) {
|
||||
setupTest(hooks);
|
||||
|
||||
test('it exists', function (assert) {
|
||||
const route = this.owner.lookup('route:auth');
|
||||
assert.ok(route);
|
||||
});
|
||||
});
|
11
frontend-reactive/tests/unit/routes/testing-test.ts
Normal file
11
frontend-reactive/tests/unit/routes/testing-test.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { module, test } from 'qunit';
|
||||
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||||
|
||||
module('Unit | Route | testing', function (hooks) {
|
||||
setupTest(hooks);
|
||||
|
||||
test('it exists', function (assert) {
|
||||
const route = this.owner.lookup('route:testing');
|
||||
assert.ok(route);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue