[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:
Victor Woeltjen
2015-04-17 15:11:22 -07:00
parent 62958280b7
commit 955c4209f0
7 changed files with 65 additions and 0 deletions

View 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 () {
});
}
);

View 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 () {
});
}
);

View File

@ -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",

View 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 () {
});
}
);

View 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 () {
});
}
);

View 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 () {
});
}
);

View File

@ -2,7 +2,10 @@
"TelemetryAggregator", "TelemetryAggregator",
"TelemetryCapability", "TelemetryCapability",
"TelemetryController", "TelemetryController",
"TelemetryDelegator",
"TelemetryFormatter", "TelemetryFormatter",
"TelemetryHandle",
"TelemetryHandler",
"TelemetryQueue", "TelemetryQueue",
"TelemetrySubscriber", "TelemetrySubscriber",
"TelemetrySubscription", "TelemetrySubscription",