chore: blob report does not print to console (#23027)

This commit is contained in:
Yury Semikhatsky 2023-05-15 12:46:17 -07:00 committed by GitHub
parent d2ea6588d7
commit 6c75095896
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,10 @@ export class BlobReporter extends TeleReporterEmitter {
this._salt = createGuid();
}
printsToStdio() {
return false;
}
override onBegin(config: FullConfig<{}, {}>, suite: Suite): void {
this._outputDir = path.resolve(this._options.configDir, this._options.outputDir || 'blob-report');
fs.mkdirSync(path.join(this._outputDir, 'resources'), { recursive: true });