From 2d080c950318d44e6ea2af1f7ce39c157c5c833b Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Tue, 21 May 2019 14:18:57 -0400 Subject: [PATCH] Fix tests refs #15230 Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- src/store/auth/auth-action.test.ts | 1 + src/store/auth/auth-reducer.test.ts | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index 11f29e45..f28ae179 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -68,6 +68,7 @@ describe('auth-actions', () => { zzzzz: "zzzzz.arvadosapi.com", xc59z: "xc59z.arvadosapi.com" }, + remoteHostsConfig: {}, sessions: [{ "active": true, "baseUrl": undefined, 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", -- 2.30.2