From: Eric Biagiotti Date: Wed, 15 May 2019 15:35:08 +0000 (-0400) Subject: 15088: Fixes tests broken by the merge X-Git-Tag: 1.4.0~1^2~11 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/06f1c8b752ff3f2b788773eac42438335bb86a91 15088: Fixes tests broken by the merge Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index 11f29e45..4a69fc15 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -64,6 +64,7 @@ describe('auth-actions', () => { sshKeys: [], homeCluster: "zzzzz", localCluster: "zzzzz", + remoteHostsConfig: {}, remoteHosts: { zzzzz: "zzzzz.arvadosapi.com", xc59z: "xc59z.arvadosapi.com" diff --git a/src/store/auth/auth-reducer.test.ts b/src/store/auth/auth-reducer.test.ts index 38cf1581..14d92803 100644 --- a/src/store/auth/auth-reducer.test.ts +++ b/src/store/auth/auth-reducer.test.ts @@ -43,7 +43,8 @@ describe('auth-reducer', () => { sessions: [], homeCluster: "zzzzz", localCluster: "", - remoteHosts: {} + remoteHosts: {}, + remoteHostsConfig: {} }); }); @@ -59,6 +60,7 @@ describe('auth-reducer', () => { homeCluster: "", localCluster: "", remoteHosts: {}, + remoteHostsConfig: {} }); }); @@ -85,6 +87,7 @@ describe('auth-reducer', () => { homeCluster: "", localCluster: "", remoteHosts: {}, + remoteHostsConfig: {}, user: { email: "test@test.com", firstName: "John",