intern
Version:
Intern. A next-generation code testing stack for JavaScript.
15 lines (14 loc) • 372 B
TypeScript
import Test from './Test';
import { LifecycleMethod } from './Suite';
export interface InternError {
name: string;
message: string;
stack?: string;
showDiff?: boolean;
actual?: any;
expected?: any;
lifecycleMethod?: LifecycleMethod;
relatedTest?: Test;
reported?: boolean;
}
export declare type RuntimeEnvironment = 'node' | 'browser';