delete empty controllers (#928)

* delete empty controllers

* delete boilerplate controller test
This commit is contained in:
Jeldrik Hanschke 2024-02-17 23:44:13 +01:00 committed by GitHub
parent 5a624f6b20
commit 3f038097e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 18 deletions

View file

@ -1,3 +0,0 @@
import Controller from '@ember/controller';
export default class ApplicationController extends Controller {}

View file

@ -1,3 +0,0 @@
import Controller from '@ember/controller';
export default class ErrorController extends Controller {}

View file

@ -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);
});
});