delete empty controllers (#928)
* delete empty controllers * delete boilerplate controller test
This commit is contained in:
parent
5a624f6b20
commit
3f038097e0
3 changed files with 0 additions and 18 deletions
|
@ -1,3 +0,0 @@
|
|||
import Controller from '@ember/controller';
|
||||
|
||||
export default class ApplicationController extends Controller {}
|
|
@ -1,3 +0,0 @@
|
|||
import Controller from '@ember/controller';
|
||||
|
||||
export default class ErrorController extends Controller {}
|
|
@ -1,12 +0,0 @@
|
|||
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);
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue