Add developmentMode flag to appdb

Part of #171
This commit is contained in:
Girish Ramakrishnan
2017-01-19 15:48:41 -08:00
parent 155995c7f3
commit a71323f8b3
7 changed files with 40 additions and 12 deletions

View File

@@ -542,7 +542,8 @@ describe('database', function () {
altDomain: null,
xFrameOptions: 'DENY',
sso: true,
readonlyRootfs: true
readonlyRootfs: true,
developmentMode: false
};
var APP_1 = {
id: 'appid-1',
@@ -564,7 +565,8 @@ describe('database', function () {
altDomain: null,
xFrameOptions: 'SAMEORIGIN',
sso: true,
readonlyRootfs: true
readonlyRootfs: true,
developmentMode: false
};
it('add fails due to missing arguments', function () {