[ARVADOS-WORKBENCH2] updated: 1.4.1-437-gbedfc199
Git user
git at public.arvados.org
Tue Sep 29 19:47:17 UTC 2020
Summary of changes:
src/common/redirect-to.test.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via bedfc199257daf616753ddfb45f1e179e70dc634 (commit)
from bd61e7438a308e9d51fe4d3ae18234bfaf6d4366 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit bedfc199257daf616753ddfb45f1e179e70dc634
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Tue Sep 29 21:43:55 2020 +0200
16812: Added types to remove compile errors
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
diff --git a/src/common/redirect-to.test.ts b/src/common/redirect-to.test.ts
index 3dad8233..eed5b4c8 100644
--- a/src/common/redirect-to.test.ts
+++ b/src/common/redirect-to.test.ts
@@ -17,7 +17,7 @@ describe('redirect-to', () => {
delete window.location;
window.location = {
href: `${location.href}?redirectTo=${redirectTo}`,
- };
+ } as any;
Object.defineProperty(window, 'sessionStorage', {
value: {
setItem: jest.fn(),
@@ -40,7 +40,7 @@ describe('redirect-to', () => {
delete window.location;
window.location = {
href: `${location.href}?redirectTo=${redirectTo}`,
- };
+ } as any;
Object.defineProperty(window, 'sessionStorage', {
value: {
getItem: () => redirectTo,
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list