Update docs/src/test-reporters-js.md

Co-authored-by: Dmitry Gozman <dgozman@gmail.com>
Signed-off-by: Yury Semikhatsky <yurys@chromium.org>
This commit is contained in:
Yury Semikhatsky 2024-04-26 09:02:50 -07:00
parent b2c087a6bc
commit e8e1e17c1e

View file

@ -221,7 +221,7 @@ By default, the report is written into the `blob-report` directory in the packag
import { defineConfig } from '@playwright/test';
export default defineConfig({
reporter: [['blob', { outputFile: `blob-report/report-${os.platform()}.zip` }]],
reporter: [['blob', { outputFile: `./blob-report/report-${os.platform()}.zip` }]],
});
```