From f2213cfc05842af977d780879092ca77a95f12be Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kuty=C5=82a?= Date: Wed, 21 Oct 2020 16:15:00 +0200 Subject: [PATCH] 17019: replaced domain and cluster with fake data MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła --- src/views-components/context-menu/actions/helpers.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.30.2