Files
week-organizer-app/webapp/test/unit/controller/MainPage.controller.ts
T

11 lines
340 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);
});