mStar
c75acc48a2
Placeholder files for future app structure Also figured out how to have root url code stuff
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
|
|
|
module('Unit | Route | application', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
test('it exists', function (assert) {
|
|
const route = this.owner.lookup('route:application');
|
|
assert.ok(route);
|
|
});
|
|
});
|