Skip to content

Commit 3ed857e

Browse files
committed
fix(coverage): remove incorrect c8 ignore comments on closing braces
Removed two c8 ignore next comments on closing braces that were incorrectly ignoring the next line instead of the braces themselves. This fixes the CI coverage threshold failure (97.39% vs 97.4%).
1 parent 3c60fd2 commit 3ed857e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/socket-sdk-class.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ export class SocketSdk {
944944
success: false,
945945
}
946946
/* c8 ignore stop */
947-
} /* c8 ignore next - Closing brace of error result handling. */
947+
}
948948

949949
/* c8 ignore next - Fallback error handling for non-ResponseError cases in getApi. */
950950
return this.#createQueryErrorResult<T>(e)
@@ -2008,7 +2008,7 @@ export class SocketSdk {
20082008
e,
20092009
)) as unknown as UploadManifestFilesError
20102010
/* c8 ignore stop */
2011-
} /* c8 ignore next - Closing brace of error handling block. */
2011+
}
20122012
}
20132013

20142014
/**

0 commit comments

Comments
 (0)