Skip to content

Commit 069c82b

Browse files
committed
chore: coverage
1 parent a11d6f3 commit 069c82b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/util/next-tick.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,14 @@ if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
5050
port.postMessage(1)
5151
}
5252
} else {
53+
/* istanbul ignore next */
5354
macroTimerFunc = () => {
5455
setTimeout(flushCallbacks, 0)
5556
}
5657
}
5758

5859
// Determine MicroTask defer implementation.
59-
// $flow-disable-line, istanbul ignore next
60+
/* istanbul ignore next, $flow-disable-line */
6061
if (typeof Promise !== 'undefined' && isNative(Promise)) {
6162
const p = Promise.resolve()
6263
microTimerFunc = () => {

0 commit comments

Comments
 (0)