mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 20:58:15 +00:00
[Plot] Add skeleton specs for stacked plots
Add skeleton specs for classes introduced to support stacked plot mode, WTD-625.
This commit is contained in:
14
platform/features/plot/test/SubPlotSpec.js
Normal file
14
platform/features/plot/test/SubPlotSpec.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/*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 () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -0,0 +1,14 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/elements/PlotPanZoomStackGroup"],
|
||||||
|
function (PlotController) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A plot pan-zoom stack group", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
14
platform/features/plot/test/modes/PlotModeOptionsSpec.js
Normal file
14
platform/features/plot/test/modes/PlotModeOptionsSpec.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/modes/PlotModeOptions"],
|
||||||
|
function (PlotModeOptions) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("Plot mode options", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
14
platform/features/plot/test/modes/PlotOverlayModeSpec.js
Normal file
14
platform/features/plot/test/modes/PlotOverlayModeSpec.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/modes/PlotOverlayMode"],
|
||||||
|
function (PlotOverlayMode) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("Overlaid plot mode", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
14
platform/features/plot/test/modes/PlotStackModeSpec.js
Normal file
14
platform/features/plot/test/modes/PlotStackModeSpec.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/modes/PlotStackMode"],
|
||||||
|
function (PlotStackMode) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("Stacked plot mode", function () {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -2,12 +2,17 @@
|
|||||||
"GLChart",
|
"GLChart",
|
||||||
"MCTChart",
|
"MCTChart",
|
||||||
"PlotController",
|
"PlotController",
|
||||||
|
"SubPlot",
|
||||||
"elements/PlotAxis",
|
"elements/PlotAxis",
|
||||||
"elements/PlotFormatter",
|
"elements/PlotFormatter",
|
||||||
"elements/PlotPalette",
|
"elements/PlotPalette",
|
||||||
"elements/PlotPanZoomStack",
|
"elements/PlotPanZoomStack",
|
||||||
|
"elements/PlotPanZoomStackGroup",
|
||||||
"elements/PlotPosition",
|
"elements/PlotPosition",
|
||||||
"elements/PlotPreparer",
|
"elements/PlotPreparer",
|
||||||
"elements/PlotTickGenerator"
|
"elements/PlotTickGenerator",
|
||||||
|
"modes/PlotModeOptions",
|
||||||
|
"modes/PlotOverlayMode",
|
||||||
|
"modes/PlotStackMode"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user