Files
memecoin-botV2/.pnpm-store/v10/files/2d/20e0d29fd3987d874ad9709a0573616e30962a3369f31dbe3d6d2db2c7071c7397f061d8653cec173290d4d1d687c6bcc9b3bd0e13c4c245289a5276dde0f3

10 lines
294 B
Plaintext

'use strict'
module.exports = testFile => {
// Ignore coverage on files that do not have a direct corollary.
if (testFile.startsWith('test/')) return false
// Indicate the matching name, sans '.test.js', should be checked for coverage.
return testFile.replace(/\.test\.js$/, '.js')
}