Skip to content

Commit

Permalink
remove unneeded c8 ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
robrichard committed Aug 23, 2022
1 parent 5c58066 commit efda9be
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/execution/__tests__/flattenAsyncIterable-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ describe('flattenAsyncIterable', () => {
let caughtError;
try {
await doubles.throw('ouch'); /* c8 ignore start */
// Not reachable, always throws
/* c8 ignore stop */
} catch (e) {
caughtError = e;
}
Expand Down
1 change: 0 additions & 1 deletion src/execution/flattenAsyncIterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export function flattenAsyncIterable<T>(
throw error;
},
[Symbol.asyncIterator]() {
/* c8 ignore next */
return this;
},
};
Expand Down

0 comments on commit efda9be

Please sign in to comment.