.solcover.js 323 B

123456789101112131415
  1. const shell = require("shelljs");
  2. module.exports = {
  3. istanbulReporter: ["html"],
  4. mocha: {
  5. delay: true,
  6. },
  7. onCompileComplete: async function (_config) {
  8. await run("typechain");
  9. },
  10. onIstanbulComplete: async function (_config) {
  11. shell.rm("-rf", "./typechain");
  12. },
  13. skipFiles: ["mocks", "test"],
  14. };