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.
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
/*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;
|
|
});
|
|
}
|
|
); |