Make runState non-nullable
This commit is contained in:
@@ -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' },
|
||||
|
||||
Reference in New Issue
Block a user