You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
527 B
13 lines
527 B
const plugin = require("./plugins/hardhat.plugin");
|
|
const PluginUI = require('./plugins/resources/nomiclabs.ui');
|
|
|
|
// UI for the task flags...
|
|
const ui = new PluginUI();
|
|
|
|
task("coverage", "Generates a code coverage report for tests")
|
|
.addOptionalParam("testfiles", ui.flags.file, "", types.string)
|
|
.addOptionalParam("solcoverjs", ui.flags.solcoverjs, "", types.string)
|
|
.addOptionalParam('temp', ui.flags.temp, "", types.string)
|
|
.setAction(async function(args, env){
|
|
await plugin(args, env)
|
|
});
|
|
|