1234567891011121314151617 |
- const shell = require("shelljs");
- module.exports = {
- istanbulReporter: ["html", "lcov"],
- 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");
- },
- providerOptions: {
- mnemonic: process.env.MNEMONIC,
- },
- skipFiles: ["mocks", "test"],
- };
|