mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
[Scrolling] Add empty tests
Add empty tests for scripts associated with the scrolling list view. WTD-534.
This commit is contained in:
parent
4905e68ad2
commit
c0a34149ca
14
platform/features/scrolling/test/DomainColumnSpec.js
Normal file
14
platform/features/scrolling/test/DomainColumnSpec.js
Normal file
@ -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 () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/scrolling/test/NameColumnSpec.js
Normal file
14
platform/features/scrolling/test/NameColumnSpec.js
Normal file
@ -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 () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/scrolling/test/RangeColumnSpec.js
Normal file
14
platform/features/scrolling/test/RangeColumnSpec.js
Normal file
@ -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 () {
|
||||
});
|
||||
}
|
||||
);
|
@ -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 () {
|
||||
});
|
||||
}
|
||||
);
|
6
platform/features/scrolling/test/suite.json
Normal file
6
platform/features/scrolling/test/suite.json
Normal file
@ -0,0 +1,6 @@
|
||||
[
|
||||
"DomainColumn",
|
||||
"NameColumn",
|
||||
"RangeColumn",
|
||||
"ScrollingListController"
|
||||
]
|
Loading…
Reference in New Issue
Block a user