Added a helper component for managing a list of strings. This component could, in theory, also be turned into a generic one for any type of data
11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
|
|
|
module('Unit | Route | registerForm', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
test('it exists', function (assert) {
|
|
const route = this.owner.lookup('route:register-form');
|
|
assert.ok(route);
|
|
});
|
|
});
|