Interface ITestStatusUpdateContext

Execution context for an ISetupTestEventListenerOptions.onStatusUpdate() callback.

interface ITestStatusUpdateContext {
    context: ITestEventHandlerContext;
    error?: any;
    status: TestStatus;
}

Properties

Properties

context: ITestEventHandlerContext

The underlying event handler execution context with information about the test.

error?: any

The error information, if status is failed.

status: TestStatus

The current status.

Generated using TypeDoc