Interface IAfterAllTestsContext

Context for a AfterAllTestsFunc function / method.

interface IAfterAllTestsContext {
    error?: any;
    failCount: number;
    session: Readonly<ITestSession>;
    totalCount: number;
}

Properties

error?: any

The global error, if occurred.

failCount: number

The number of failed tests.

session: Readonly<ITestSession>

The underlying session.

totalCount: number

The total number of tests.

Generated using TypeDoc