Hello,
My .solcover file looks like the following
module.exports = {
skipFiles: [
'abstracts',
'accelerator/Accelerator.sol',
'accelerator/Random.sol',
'enums',
'interfaces',
'libs',
'recovery',
'test',
'Airdrop.sol',
'Token.sol',
],
};
And when i run yarn coverage I get the following results

But when i remove accelerator/Accelerator.sol and accelerator/Random.sol from my skipfiles i get the following result

Not sure why coverage isn't letting me skip those 2 files without produces random results as shown above.
Hello,
My .solcover file looks like the following
And when i run
yarn coverageI get the following resultsBut when i remove
accelerator/Accelerator.solandaccelerator/Random.solfrom my skipfiles i get the following resultNot sure why coverage isn't letting me skip those 2 files without produces random results as shown above.