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