hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
12 lines • 398 B
TypeScript
import type { NewTaskActionFunction } from "../../../types/tasks.js";
interface TestActionArguments {
testFiles: string[];
chainType: string;
grep?: string;
noCompile: boolean;
verbosity: number;
testSummaryIndex: number;
}
declare const runSolidityTests: NewTaskActionFunction<TestActionArguments>;
export default runSolidityTests;
//# sourceMappingURL=task-action.d.ts.map