Explorar o código

chore: coverage

Evan You %!s(int64=8) %!d(string=hai) anos
pai
achega
069c82bed7
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/core/util/next-tick.js

+ 2 - 1
src/core/util/next-tick.js

@@ -50,13 +50,14 @@ if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
     port.postMessage(1)
   }
 } else {
+  /* istanbul ignore next */
   macroTimerFunc = () => {
     setTimeout(flushCallbacks, 0)
   }
 }
 
 // Determine MicroTask defer implementation.
-// $flow-disable-line, istanbul ignore next
+/* istanbul ignore next, $flow-disable-line */
 if (typeof Promise !== 'undefined' && isNative(Promise)) {
   const p = Promise.resolve()
   microTimerFunc = () => {