10 lines
336 B
TypeScript
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);
|
|
}); |