mirror of
https://github.com/nasa/openmct.git
synced 2024-12-26 16:21:06 +00:00
14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../../src/elements/PlotTickGenerator"],
|
||
|
function (PlotTickGenerator) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("A plot tick generator", function () {
|
||
|
});
|
||
|
}
|
||
|
);
|