@wdio/dot-reporter
Version:
A WebdriverIO plugin to report in dot style
21 lines • 466 B
TypeScript
import WDIOReporter from '@wdio/reporter';
import type { Reporters } from '@wdio/types';
/**
* Initialize a new `Dot` matrix test reporter.
*/
export default class DotReporter extends WDIOReporter {
constructor(options: Reporters.Options);
/**
* pending tests
*/
onTestSkip(): void;
/**
* passing tests
*/
onTestPass(): void;
/**
* failing tests
*/
onTestFail(): void;
}
//# sourceMappingURL=index.d.ts.map