From: Daniel Kutyła Date: Wed, 21 Oct 2020 14:15:00 +0000 (+0200) Subject: 17019: replaced domain and cluster with fake data X-Git-Tag: 2.1.1~8^2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/f2213cfc05842af977d780879092ca77a95f12be?hp=-c 17019: replaced domain and cluster with fake data Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła --- f2213cfc05842af977d780879092ca77a95f12be diff --git a/src/views-components/context-menu/actions/helpers.test.ts b/src/views-components/context-menu/actions/helpers.test.ts index 23e5187a..4234a8cc 100644 --- a/src/views-components/context-menu/actions/helpers.test.ts +++ b/src/views-components/context-menu/actions/helpers.test.ts @@ -6,7 +6,7 @@ import { sanitizeToken, getClipboardUrl } from "./helpers"; describe('helpers', () => { // given - const url = 'https://collections.ardev.roche.com/c=ardev-4zz18-k0hamvtwyit6q56/t=v2/a/b/LIMS/1.html'; + const url = 'https://example.com/c=zzzzz/t=v2/a/b/LIMS/1.html'; describe('sanitizeToken', () => { it('should sanitize token from the url', () => { @@ -14,7 +14,7 @@ describe('helpers', () => { const result = sanitizeToken(url); // then - expect(result).toBe('https://collections.ardev.roche.com/c=ardev-4zz18-k0hamvtwyit6q56/LIMS/1.html?api_token=v2/a/b'); + expect(result).toBe('https://example.com/c=zzzzz/LIMS/1.html?api_token=v2/a/b'); }); }); @@ -24,7 +24,7 @@ describe('helpers', () => { const result = getClipboardUrl(url); // then - expect(result).toBe('http://localhost?redirectTo=https://collections.ardev.roche.com/c=ardev-4zz18-k0hamvtwyit6q56/LIMS/1.html'); + expect(result).toBe('http://localhost?redirectTo=https://example.com/c=zzzzz/LIMS/1.html'); }); }); }); \ No newline at end of file