Interface IBeforeEachTestContext

Context for a BeforeEachTestFunc function / method.

interface IBeforeEachTestContext {
    index: number;
    session: Readonly<ITestSession>;
    totalCount: number;
}

Properties

index: number

The current zero-based index.

session: Readonly<ITestSession>

The underlying session.

totalCount: number

The total number of tests.

Generated using TypeDoc