@serenity-js/webdriverio
Version:
Adapter that integrates @serenity-js/web with the latest stable version of WebdriverIO, enabling Serenity/JS reporting and using the Screenplay Pattern to write web and mobile test scenarios
13 lines • 376 B
TypeScript
import type { OutputStream } from '@serenity-js/core/lib/adapter/index.js';
/**
* @package
*/
export declare class OutputStreamBuffer implements OutputStream {
private readonly prefix;
private buffer;
constructor(prefix: string);
write(content: string): void;
hasContent(): boolean;
flush(): string;
}
//# sourceMappingURL=OutputStreamBuffer.d.ts.map