Welcome to mirror list, hosted at ThFree Co, Russian Federation.

coverage-map.js « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63f2a608e0ee3bd2b1cc1be86c319e10b6d2da4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const full = process.env.npm_lifecycle_event === 'check-coverage'
const coverageMap = (filename) => {
  if (full && /load-all.js$/.test(filename)) {
    const glob = require('glob')
    const { resolve, relative } = require('path')
    const dir = resolve(__dirname, '../lib')
    return glob.sync(`${dir}/**/*.js`)
      .map(f => relative(process.cwd(), f))
  }
  if (/windows-shims\.js$/.test(filename)) {
    // this one doesn't provide any coverage nyc can track
    return []
  }
  if (/^test\/(lib|bin)\//.test(filename))
    return filename.replace(/^test\//, '')
  return []
}

module.exports = coverageMap