UNPKG

hardhat

Version:

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

30 lines (25 loc) 865 B
import "./builtin-plugin-type-extensions.js"; /* eslint-disable-next-line @typescript-eslint/no-empty-interface -- Empty interface allow plugins to extend the Test user configuration for Hardhat. */ export interface HardhatTestUserConfig {} /* eslint-disable-next-line @typescript-eslint/no-empty-interface -- Empty interface allow plugins to extend the Test configuration for Hardhat. */ 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; }