docs(test-reporters): fix code snippet typos

Fixes #19159
This commit is contained in:
Max Schmitt 2022-11-30 15:37:31 -08:00
parent 6721ea4d3a
commit 878401ff2b
No known key found for this signature in database

View file

@ -153,7 +153,7 @@ You can opt into the step rendering via passing the following config option:
/** @type {import('@playwright/test').PlaywrightTestConfig} */ /** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = { const config = {
reporter: [['list', { printSteps: true }], reporter: [['list', { printSteps: true }]],
}; };
module.exports = config; module.exports = config;
@ -164,7 +164,7 @@ module.exports = config;
import type { PlaywrightTestConfig } from '@playwright/test'; import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = { const config: PlaywrightTestConfig = {
reporter: [['list', { printSteps: true }], reporter: [['list', { printSteps: true }]],
}; };
export default config; export default config;
``` ```