UNPKG

intern

Version:

Intern. A next-generation code testing stack for JavaScript.

13 lines (12 loc) 290 B
import Test from './Test'; export interface InternError { name: string; message: string; stack?: string; showDiff?: boolean; actual?: any; expected?: any; relatedTest?: Test; reported?: boolean; } export declare type RuntimeEnvironment = 'node' | 'browser';