Files
week-organizer-app/webapp/test/unit/controller/MainPage.controller.ts
T
2026-08-10 18:10:28 +02:00

10 lines
336 B
TypeScript

/*global QUnit*/
import Controller from "de/paulvincenthorn/weekorganizer/weekorganizerapp/controller/Main.controller";
QUnit.module("Main Controller");
QUnit.test("I should test the Main controller", function (assert: Assert) {
const oAppController = new Controller("Main");
oAppController.onInit();
assert.ok(oAppController);
});