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 */