[Common UI] Reorganize general UI tests

Reorganize folder strucutre for tests in bundle
platform/commonUI/general; source folder structure
has been modified to accommodate additional classes
added to support autoflow tabular views, WTD-614,
so test folder needs to be reorganized accordingly
This commit is contained in:
Victor Woeltjen 2014-12-30 13:40:42 -08:00
parent 112622ab9f
commit 54c075dc88
10 changed files with 18 additions and 18 deletions

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ActionGroupController"],
["../../src/controllers/ActionGroupController"],
function (ActionGroupController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/BottomBarController"],
["../../src/controllers/BottomBarController"],
function (BottomBarController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ClickAwayController"],
["../../src/controllers/ClickAwayController"],
function (ClickAwayController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ContextMenuController"],
["../../src/controllers/ContextMenuController"],
function (ContextMenuController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ToggleController"],
["../../src/controllers/ToggleController"],
function (ToggleController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/TreeNodeController"],
["../../src/controllers/TreeNodeController"],
function (TreeNodeController) {
"use strict";

View File

@ -4,7 +4,7 @@
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/ViewSwitcherController"],
["../../src/controllers/ViewSwitcherController"],
function (ViewSwitcherController) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/MCTContainer"],
["../../src/directives/MCTContainer"],
function (MCTContainer) {
"use strict";

View File

@ -1,7 +1,7 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../src/MCTDrag"],
["../../src/directives/MCTDrag"],
function (MCTDrag) {
"use strict";

View File

@ -1,11 +1,11 @@
[
"ActionGroupController",
"BottomBarController",
"ClickAwayController",
"ContextMenuController",
"MCTContainer",
"MCTDrag",
"ToggleController",
"TreeNodeController",
"ViewSwitcherController"
"controllers/ActionGroupController",
"controllers/BottomBarController",
"controllers/ClickAwayController",
"controllers/ContextMenuController",
"controllers/ToggleController",
"controllers/TreeNodeController",
"controllers/ViewSwitcherController",
"directives/MCTContainer",
"directives/MCTDrag"
]