UNPKG

372 BTypeScriptView Raw
1import Test from './Test';
2import { LifecycleMethod } from './Suite';
3export interface InternError {
4 name: string;
5 message: string;
6 stack?: string;
7 showDiff?: boolean;
8 actual?: any;
9 expected?: any;
10 lifecycleMethod?: LifecycleMethod;
11 relatedTest?: Test;
12 reported?: boolean;
13}
14export declare type RuntimeEnvironment = 'node' | 'browser';