All files / vue/src dev.ts

50% Statements 3/6
0% Branches 0/2
100% Functions 1/1
50% Lines 3/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 1520x   20x 20x                      
import { initCustomFormatter } from '@vue/runtime-dom'
 
export function initDev() {
  Iif (__BROWSER__) {
    Iif (!__ESM_BUNDLER__) {
      console.info(
        `You are running a development build of Vue.\n` +
          `Make sure to use the production build (*.prod.js) when deploying for production.`
      )
    }
 
    initCustomFormatter()
  }
}