diff --git a/platform/commonUI/general/test/BottomBarControllerSpec.js b/platform/commonUI/general/test/BottomBarControllerSpec.js new file mode 100644 index 0000000000..1f228e0628 --- /dev/null +++ b/platform/commonUI/general/test/BottomBarControllerSpec.js @@ -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; + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/general/test/suite.json b/platform/commonUI/general/test/suite.json index 7d1f773796..590628ed91 100644 --- a/platform/commonUI/general/test/suite.json +++ b/platform/commonUI/general/test/suite.json @@ -1,5 +1,6 @@ [ "ActionGroupController", + "BottomBarController", "ClickAwayController", "ContextMenuController", "MCTContainer", diff --git a/platform/persistence/test/CouchIndicatorSpec.js b/platform/persistence/test/CouchIndicatorSpec.js new file mode 100644 index 0000000000..855e20c892 --- /dev/null +++ b/platform/persistence/test/CouchIndicatorSpec.js @@ -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 () { + + }); + } +); \ No newline at end of file diff --git a/platform/persistence/test/suite.json b/platform/persistence/test/suite.json index 9df76a4c55..9a5621116d 100644 --- a/platform/persistence/test/suite.json +++ b/platform/persistence/test/suite.json @@ -1,4 +1,5 @@ [ "CouchDocument", + "CouchIndicator", "CouchPersistenceProvider" ] \ No newline at end of file