[Common UI] Add skeleton specs

Add empty test scripts for new scripts introduced to
the platform/commonUI/general bundle in support of
the autoflow tabular view, WTD-614.
This commit is contained in:
Victor Woeltjen 2014-12-30 14:08:37 -08:00
parent 8dd255a06e
commit dd1b8f7c2f
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,12 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../../src/controllers/GetterSetterController"],
function (GetterSetterController) {
"use strict";
describe("The getter-setter controller", function () {
});
}
);

View File

@ -0,0 +1,12 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../../src/directives/MCTResize"],
function (MCTResize) {
"use strict";
describe("The mct-resize directive", function () {
});
}
);

View File

@ -3,9 +3,11 @@
"controllers/BottomBarController",
"controllers/ClickAwayController",
"controllers/ContextMenuController",
"controllers/GetterSetterController",
"controllers/ToggleController",
"controllers/TreeNodeController",
"controllers/ViewSwitcherController",
"directives/MCTContainer",
"directives/MCTDrag"
"directives/MCTDrag",
"directives/MCTResize"
]