diff --git a/platform/features/scrolling/test/DomainColumnSpec.js b/platform/features/scrolling/test/DomainColumnSpec.js new file mode 100644 index 0000000000..d2f1629c55 --- /dev/null +++ b/platform/features/scrolling/test/DomainColumnSpec.js @@ -0,0 +1,14 @@ +/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MergeModelsSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/DomainColumn"], + function (DomainColumn) { + "use strict"; + + describe("A domain column", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/NameColumnSpec.js b/platform/features/scrolling/test/NameColumnSpec.js new file mode 100644 index 0000000000..5763bd6021 --- /dev/null +++ b/platform/features/scrolling/test/NameColumnSpec.js @@ -0,0 +1,14 @@ +/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MergeModelsSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/NameColumn"], + function (NameColumn) { + "use strict"; + + describe("A name column", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/RangeColumnSpec.js b/platform/features/scrolling/test/RangeColumnSpec.js new file mode 100644 index 0000000000..39983bc153 --- /dev/null +++ b/platform/features/scrolling/test/RangeColumnSpec.js @@ -0,0 +1,14 @@ +/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MergeModelsSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/RangeColumn"], + function (RangeColumn) { + "use strict"; + + describe("A range column", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/ScrollingListControllerSpec.js b/platform/features/scrolling/test/ScrollingListControllerSpec.js new file mode 100644 index 0000000000..25922d442a --- /dev/null +++ b/platform/features/scrolling/test/ScrollingListControllerSpec.js @@ -0,0 +1,14 @@ +/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MergeModelsSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../src/ScrollingListController"], + function (ScrollingListController) { + "use strict"; + + describe("The scrolling list controller", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/suite.json b/platform/features/scrolling/test/suite.json new file mode 100644 index 0000000000..b62eaf30b6 --- /dev/null +++ b/platform/features/scrolling/test/suite.json @@ -0,0 +1,6 @@ +[ + "DomainColumn", + "NameColumn", + "RangeColumn", + "ScrollingListController" +] \ No newline at end of file