diff --git a/src/helpers/url.test.ts b/src/helpers/url.test.ts index 57d3fa43..686adf12 100644 --- a/src/helpers/url.test.ts +++ b/src/helpers/url.test.ts @@ -4,18 +4,6 @@ const exampleUrl = 'https://raw.githubusercontent.com/onderceylan/pwa-asset-generator/HEAD/static/logo.png'; describe('URL helper', () => { - describe('with isUrlExist should check url existence', () => { - it('when URL is reachable', async () => { - expect(await url.isUrlExists(exampleUrl)).toBeTruthy(); - }); - - it('when URL is not reachable', async () => { - expect( - await url.isUrlExists('https://your-cdn-server.com/assets/logo.png'), - ).toBeFalsy(); - }); - }); - describe('with isUrl should check url', () => { it('when URL is legitimate', async () => { expect(await url.isUrl(exampleUrl)).toBeTruthy();