UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

12 lines (11 loc) 405 B
import { ITest, ITestCase, ITestFixture } from "../_interfaces/index"; import { TestOutcome } from "../results/test-outcome"; export interface ITestCompleteEvent { testId: number; testCase: ITestCase; test: ITest; testFixture: ITestFixture; outcome?: TestOutcome; error?: Error | null; } export declare type IOnTestCompleteCBFunction = (testCompleted: ITestCompleteEvent) => void;