mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
[Plot] Add skeleton specs
Add skeleton specs for remaining plot scripts. WTD-533.
This commit is contained in:
parent
86711735b7
commit
ae05ed903b
14
platform/features/plot/test/GLChartSpec.js
Normal file
14
platform/features/plot/test/GLChartSpec.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/GLChart"],
|
||||
function (GLChart) {
|
||||
"use strict";
|
||||
|
||||
describe("A WebGL chart", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/MCTChartSpec.js
Normal file
14
platform/features/plot/test/MCTChartSpec.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/MCTChart"],
|
||||
function (MCTChart) {
|
||||
"use strict";
|
||||
|
||||
describe("The mct-chart directive", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotAxisSpec.js
Normal file
14
platform/features/plot/test/elements/PlotAxisSpec.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/elements/PlotAxis"],
|
||||
function (PlotAxis) {
|
||||
"use strict";
|
||||
|
||||
describe("A plot axis", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotFormatterSpec.js
Normal file
14
platform/features/plot/test/elements/PlotFormatterSpec.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/elements/PlotFormatter"],
|
||||
function (PlotFormatter) {
|
||||
"use strict";
|
||||
|
||||
describe("The plot formatter", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotPaletteSpec.js
Normal file
14
platform/features/plot/test/elements/PlotPaletteSpec.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/elements/PlotPalette"],
|
||||
function (PlotPalette) {
|
||||
"use strict";
|
||||
|
||||
describe("The plot palette", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotPanZoomStackSpec.js
Normal file
14
platform/features/plot/test/elements/PlotPanZoomStackSpec.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/elements/PlotPanZoomStack"],
|
||||
function (PlotPanZoomStack) {
|
||||
"use strict";
|
||||
|
||||
describe("A plot pan-zoom stack", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotPositionSpec.js
Normal file
14
platform/features/plot/test/elements/PlotPositionSpec.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/elements/PlotPosition"],
|
||||
function (PlotPosition) {
|
||||
"use strict";
|
||||
|
||||
describe("A plot position", function () {
|
||||
});
|
||||
}
|
||||
);
|
14
platform/features/plot/test/elements/PlotPreparerSpec.js
Normal file
14
platform/features/plot/test/elements/PlotPreparerSpec.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/elements/PlotPreparer"],
|
||||
function (PlotPreparer) {
|
||||
"use strict";
|
||||
|
||||
describe("A plot preparer", 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/PlotTickGenerator"],
|
||||
function (PlotTickGenerator) {
|
||||
"use strict";
|
||||
|
||||
describe("A plot tick generator", function () {
|
||||
});
|
||||
}
|
||||
);
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
"PlotController"
|
||||
"GLChart",
|
||||
"MCTChart",
|
||||
"PlotController",
|
||||
"elements/PlotAxis",
|
||||
"elements/PlotFormatter",
|
||||
"elements/PlotPalette",
|
||||
"elements/PlotPanZoomStack",
|
||||
"elements/PlotPosition",
|
||||
"elements/PlotPreparer",
|
||||
"elements/PlotTickGenerator"
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user