mirror of
https://github.com/nasa/openmct.git
synced 2025-01-10 15:02:53 +00:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
|
/*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 () {
|
||
|
});
|
||
|
}
|
||
|
);
|