mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 23:12:23 +00:00
14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
|
/*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 () {
|
||
|
});
|
||
|
}
|
||
|
);
|