coverage-map.js 381 B

12345678910111213
  1. module.exports = testFile => {
  2. if (testFile.startsWith('virtual-list-view-request-control') === true) {
  3. // Do not count towards coverage as it is disabled.
  4. return false
  5. }
  6. if (testFile.startsWith('virtual-list-view-response-control') === true) {
  7. // Do not count towards coverage as it is disabled.
  8. return false
  9. }
  10. testFile.replace(/\.test\.js$/, '.js')
  11. }