97605ec7d7
* get deprecation workflow up to date * fix routing.transition-methods deprecation * fix this-property-fallback deprecation * fix implicit-injections deprecation * argument-less-helper-paren-less-invocation * remove unmaintained ember-transition-helper which triggers deprecated-run-loop-and-computed-dot-access deprecation * reset to only log but not throw on errors to not block other development * reset double quote to single quote changes in templates and fix Prettier config * fix JS linting * ugprade ember-template-lint to fix parser
12 lines
351 B
JavaScript
12 lines
351 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Controller | application', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// TODO: Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let controller = this.owner.lookup('controller:application');
|
|
assert.ok(controller);
|
|
});
|
|
});
|