UNPKG

@orchestrator-ui/orchestrator-ui-components

Version:

Library of UI Components used to display the workflow orchestrator frontend

10 lines (7 loc) 301 B
import { getQueryUrl } from './getQueryUrl'; describe('getQueryUrl', () => { it('returns a url with the specified query', () => { const result = getQueryUrl('/sample-page/sub-page', 'testQuery'); expect(result).toEqual('/sample-page/sub-page?queryString=testQuery'); }); });