Make runState non-nullable

This commit is contained in:
Girish Ramakrishnan
2019-09-22 22:07:14 -07:00
parent 217632354f
commit ce133b997d
3 changed files with 23 additions and 4 deletions

View File

@@ -394,7 +394,7 @@ describe('database', function () {
appStoreId: 'appStoreId-0',
installationState: apps.ISTATE_PENDING_INSTALL,
error: null,
runState: null,
runState: 'running',
location: 'some-location-0',
domain: DOMAIN_0.domain,
manifest: { version: '0.1', dockerImage: 'docker/app0', healthCheckPath: '/', httpPort: 80, title: 'app0' },
@@ -972,7 +972,7 @@ describe('database', function () {
appStoreId: 'appStoreId-0',
installationState: apps.ISTATE_PENDING_INSTALL,
error: null,
runState: null,
runState: 'running',
location: 'some-location-0',
domain: DOMAIN_0.domain,
manifest: { version: '0.1', dockerImage: 'docker/app0', healthCheckPath: '/', httpPort: 80, title: 'app0' },
@@ -1003,7 +1003,7 @@ describe('database', function () {
appStoreId: 'appStoreId-1',
installationState: apps.ISTATE_PENDING_INSTALL, // app health tests rely on this initial state
error: null,
runState: null,
runState: 'running',
location: 'some-location-1',
domain: DOMAIN_0.domain,
manifest: { version: '0.2', dockerImage: 'docker/app1', healthCheckPath: '/', httpPort: 80, title: 'app1' },