testplane
Version:
Tests framework based on mocha and wdio
24 lines (23 loc) • 652 B
TypeScript
export = ExecutionThread;
declare class ExecutionThread {
static create(...args: any[]): import("./execution-thread");
constructor({ test, browser, testplaneCtx, screenshooter, attempt }: {
test: any;
browser: any;
testplaneCtx: any;
screenshooter: any;
attempt: any;
});
_testplaneCtx: any;
_screenshooter: any;
_ctx: {
browser: any;
currentTest: any;
attempt: any;
};
_runtimeConfig: any;
_isReplBeforeTestOpened: boolean;
run(runnable: any): Promise<void>;
_call(runnable: any): Promise<any>;
_setExecutionContext(context: any): void;
}