From b51e2bc20541cab2e877e576452b22bfa947b5db Mon Sep 17 00:00:00 2001 From: MareStare Date: Fri, 14 Mar 2025 23:32:05 +0000 Subject: [PATCH] Remove temporary ignores for coverage --- assets/js/utils/http-client.ts | 4 ---- assets/js/utils/store.ts | 4 ---- 2 files changed, 8 deletions(-) diff --git a/assets/js/utils/http-client.ts b/assets/js/utils/http-client.ts index d04df180..a41e1f35 100644 --- a/assets/js/utils/http-client.ts +++ b/assets/js/utils/http-client.ts @@ -1,6 +1,3 @@ -// Ignoring a non-100% coverage for HTTP client for now. -// It will be 100% in https://github.com/philomena-dev/philomena/pull/453 -/* v8 ignore start */ import { retry } from './retry'; interface RequestParams extends RequestInit { @@ -97,4 +94,3 @@ function generateId(prefix: string) { return chars.join(''); } -/* v8 ignore end */ diff --git a/assets/js/utils/store.ts b/assets/js/utils/store.ts index e2c97e36..2abad439 100644 --- a/assets/js/utils/store.ts +++ b/assets/js/utils/store.ts @@ -1,6 +1,3 @@ -// Ignoring a non-100% coverage for HTTP client for now. -// It will be 100% in https://github.com/philomena-dev/philomena/pull/453 -/* v8 ignore start */ /** * localStorage utils */ @@ -81,4 +78,3 @@ export default { return lastUpdatedTime === null || Date.now() > lastUpdatedTime; }, }; -/* v8 ignore end */