chore: blob report does not print to console (#23027)
This commit is contained in:
parent
d2ea6588d7
commit
6c75095896
|
|
@ -44,6 +44,10 @@ export class BlobReporter extends TeleReporterEmitter {
|
||||||
this._salt = createGuid();
|
this._salt = createGuid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printsToStdio() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
override onBegin(config: FullConfig<{}, {}>, suite: Suite): void {
|
override onBegin(config: FullConfig<{}, {}>, suite: Suite): void {
|
||||||
this._outputDir = path.resolve(this._options.configDir, this._options.outputDir || 'blob-report');
|
this._outputDir = path.resolve(this._options.configDir, this._options.outputDir || 'blob-report');
|
||||||
fs.mkdirSync(path.join(this._outputDir, 'resources'), { recursive: true });
|
fs.mkdirSync(path.join(this._outputDir, 'resources'), { recursive: true });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue