mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
a677ed258e
Add skeleton specs for classes introduced to support stacked plot mode, WTD-625.
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/SubPlot"],
|
|
function (SubPlot) {
|
|
"use strict";
|
|
|
|
describe("A sub-plot", function () {
|
|
});
|
|
}
|
|
); |