1234567891011121314151617 |
- const shell = require("shelljs");
- module.exports = {
- istanbulReporter: ["html"],
- mocha: {
- delay: true,
- },
- onCompileComplete: async function (_config) {
- await run("typechain");
- },
- onIstanbulComplete: async function (_config) {
- /* We need to do this because solcover generates bespoke artifacts. */
- shell.rm("-rf", "./artifacts");
- shell.rm("-rf", "./typechain");
- },
- skipFiles: ["mocks", "test"],
- };
|