From d6bf314b627609eca2bbb9622895cd94d795eed4 Mon Sep 17 00:00:00 2001 From: ekremney Date: Mon, 26 Aug 2024 14:08:15 +0200 Subject: [PATCH] feat: coverage --- src/support/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/support/utils.js b/src/support/utils.js index 56de2841..16adf195 100644 --- a/src/support/utils.js +++ b/src/support/utils.js @@ -26,6 +26,7 @@ export const { fetch } = process.env.HELIX_FETCH_FORCE_HTTP1 // weekly pageview threshold to eliminate urls with lack of samples export async function getRUMUrl(url) { + /* c8 ignore next 1 */ const urlWithScheme = url.startsWith('http') ? url : `https://${url}`; const resp = await fetch(urlWithScheme); const finalUrl = resp.url.split('://')[1];