[Layout] Add empty specs
Add empty specs for new scripts introduced during the transition of Layout object type and view, WTD-535.
This commit is contained in:
11
platform/commonUI/edit/test/EditRepresenterSpec.js
Normal file
11
platform/commonUI/edit/test/EditRepresenterSpec.js
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/EditRepresenter"],
|
||||||
|
function (EditRepresenter) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The Edit mode representer", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/commonUI/general/test/MCTDragSpec.js
Normal file
11
platform/commonUI/general/test/MCTDragSpec.js
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/MCTDrag"],
|
||||||
|
function (MCTDrag) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The mct-drag directive", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/features/layout/test/LayoutControllerSpec.js
Normal file
11
platform/features/layout/test/LayoutControllerSpec.js
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/LayoutController"],
|
||||||
|
function (LayoutController) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The Layout controller", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
11
platform/features/layout/test/LayoutDragSpec.js
Normal file
11
platform/features/layout/test/LayoutDragSpec.js
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/LayoutDrag"],
|
||||||
|
function (LayoutDrag) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A Layout drag handler", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../../src/gestures/GestureRepresenter"],
|
||||||
|
function (GestureRepresenter) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A gesture representer", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user