mirror of
https://github.com/nasa/openmct.git
synced 2025-03-22 03:55:31 +00:00
[Indicators] Add skeleton specs
Add skeleton specs for the bottom bar controller (introduced to handle display of indicators introduced as extensions) and the Couch indicator (introduced to exercise the above, and to report connection status relative to the Couch database.) WTD-608.
This commit is contained in:
parent
ff8572f055
commit
8ce693af0a
13
platform/commonUI/general/test/BottomBarControllerSpec.js
Normal file
13
platform/commonUI/general/test/BottomBarControllerSpec.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
define(
|
||||
["../src/BottomBarController"],
|
||||
function (BottomBarController) {
|
||||
"use strict";
|
||||
|
||||
describe("The bottom bar controller", function () {
|
||||
var testIndicators,
|
||||
controller;
|
||||
});
|
||||
}
|
||||
);
|
@ -1,5 +1,6 @@
|
||||
[
|
||||
"ActionGroupController",
|
||||
"BottomBarController",
|
||||
"ClickAwayController",
|
||||
"ContextMenuController",
|
||||
"MCTContainer",
|
||||
|
12
platform/persistence/test/CouchIndicatorSpec.js
Normal file
12
platform/persistence/test/CouchIndicatorSpec.js
Normal file
@ -0,0 +1,12 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
define(
|
||||
["../src/CouchIndicator"],
|
||||
function (CouchIndicator) {
|
||||
"use strict";
|
||||
|
||||
describe("The CouchDB status indicator", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
@ -1,4 +1,5 @@
|
||||
[
|
||||
"CouchDocument",
|
||||
"CouchIndicator",
|
||||
"CouchPersistenceProvider"
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user