UNPKG

hardhat

Version:

Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

23 lines 562 B
export interface HardhatTestUserConfig { } export interface HardhatTestConfig { } /** * Summary of a test run, containing counts of test outcomes and optional * failure output. */ export interface TestSummary { failed: number; passed: number; skipped: number; todo: number; failureOutput?: string; } /** * Result of a test run, wrapping a TestSummary. Plugins can extend this * interface to include additional data (e.g., suite results). */ export interface TestRunResult { summary: TestSummary; } //# sourceMappingURL=test.d.ts.map