mirror of
https://github.com/nasa/openmct.git
synced 2025-06-11 20:01:41 +00:00
[Plot] Add placeholder specs
Add placeholder specs for new scripts introduced to support merging real-time and historical telemetry, WTD-806.
This commit is contained in:
12
platform/features/plot/test/elements/PlotLineSpec.js
Normal file
12
platform/features/plot/test/elements/PlotLineSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../../src/elements/PlotLine"],
|
||||||
|
function (PlotLine) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A plot line", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
12
platform/features/plot/test/elements/PlotSeriesWindowSpec.js
Normal file
12
platform/features/plot/test/elements/PlotSeriesWindowSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../../src/elements/PlotSeriesWindow"],
|
||||||
|
function (PlotSeriesWindow) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A plot's window on a telemetry series", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -6,12 +6,14 @@
|
|||||||
"SubPlot",
|
"SubPlot",
|
||||||
"SubPlotFactory",
|
"SubPlotFactory",
|
||||||
"elements/PlotAxis",
|
"elements/PlotAxis",
|
||||||
|
"elements/PlotLine",
|
||||||
"elements/PlotLineBuffer",
|
"elements/PlotLineBuffer",
|
||||||
"elements/PlotPalette",
|
"elements/PlotPalette",
|
||||||
"elements/PlotPanZoomStack",
|
"elements/PlotPanZoomStack",
|
||||||
"elements/PlotPanZoomStackGroup",
|
"elements/PlotPanZoomStackGroup",
|
||||||
"elements/PlotPosition",
|
"elements/PlotPosition",
|
||||||
"elements/PlotPreparer",
|
"elements/PlotPreparer",
|
||||||
|
"elements/PlotSeriesWindow",
|
||||||
"elements/PlotTickGenerator",
|
"elements/PlotTickGenerator",
|
||||||
"elements/PlotUpdater",
|
"elements/PlotUpdater",
|
||||||
"modes/PlotModeOptions",
|
"modes/PlotModeOptions",
|
||||||
|
12
platform/telemetry/test/TelemetryDelegatorSpec.js
Normal file
12
platform/telemetry/test/TelemetryDelegatorSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/TelemetryDelegator"],
|
||||||
|
function (TelemetryDelegator) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The telemetry delegator", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
12
platform/telemetry/test/TelemetryHandleSpec.js
Normal file
12
platform/telemetry/test/TelemetryHandleSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/TelemetryHandle"],
|
||||||
|
function (TelemetryHandle) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("A telemetry handle", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
12
platform/telemetry/test/TelemetryHandlerSpec.js
Normal file
12
platform/telemetry/test/TelemetryHandlerSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/TelemetryHandler"],
|
||||||
|
function (TelemetryHandler) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The telemetry handler", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -2,7 +2,10 @@
|
|||||||
"TelemetryAggregator",
|
"TelemetryAggregator",
|
||||||
"TelemetryCapability",
|
"TelemetryCapability",
|
||||||
"TelemetryController",
|
"TelemetryController",
|
||||||
|
"TelemetryDelegator",
|
||||||
"TelemetryFormatter",
|
"TelemetryFormatter",
|
||||||
|
"TelemetryHandle",
|
||||||
|
"TelemetryHandler",
|
||||||
"TelemetryQueue",
|
"TelemetryQueue",
|
||||||
"TelemetrySubscriber",
|
"TelemetrySubscriber",
|
||||||
"TelemetrySubscription",
|
"TelemetrySubscription",
|
||||||
|
Reference in New Issue
Block a user