UNPKG

hardhat

Version:

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

28 lines (24 loc) 818 B
/* 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; }