mirror of
https://github.com/nasa/openmct.git
synced 2025-01-13 16:29:57 +00:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
|
/*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 () {
|
||
|
});
|
||
|
}
|
||
|
);
|