UNPKG

protractor-smartrunner

Version:

Protractor utility for keeping track of passed/failed tests between runs. Works together with protractor-retry.

13 lines (12 loc) 402 B
import { SmartRunnerResults } from './smartrunner-results'; export declare class SmartRunnerReporter { private results; private startTime; constructor(results: SmartRunnerResults); jasmineStarted(suiteInfo: any): void; suiteStarted(result: any): void; specStarted(result: any): void; specDone(result: any): void; suiteDone(result: any): void; jasmineDone(): void; }