Skip to content

Commit efda9be

Browse files
committed
remove unneeded c8 ignores
1 parent 5c58066 commit efda9be

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/execution/__tests__/flattenAsyncIterable-test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ describe('flattenAsyncIterable', () => {
112112
let caughtError;
113113
try {
114114
await doubles.throw('ouch'); /* c8 ignore start */
115-
// Not reachable, always throws
116-
/* c8 ignore stop */
117115
} catch (e) {
118116
caughtError = e;
119117
}

src/execution/flattenAsyncIterable.ts

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export function flattenAsyncIterable<T>(
9999
throw error;
100100
},
101101
[Symbol.asyncIterator]() {
102-
/* c8 ignore next */
103102
return this;
104103
},
105104
};

0 commit comments

Comments
 (0)