diff --git a/docs/src/test-reporters-js.md b/docs/src/test-reporters-js.md index 449f6e637a..08cc35de05 100644 --- a/docs/src/test-reporters-js.md +++ b/docs/src/test-reporters-js.md @@ -153,7 +153,7 @@ You can opt into the step rendering via passing the following config option: /** @type {import('@playwright/test').PlaywrightTestConfig} */ const config = { - reporter: [['list', { printSteps: true }], + reporter: [['list', { printSteps: true }]], }; module.exports = config; @@ -164,7 +164,7 @@ module.exports = config; import type { PlaywrightTestConfig } from '@playwright/test'; const config: PlaywrightTestConfig = { - reporter: [['list', { printSteps: true }], + reporter: [['list', { printSteps: true }]], }; export default config; ```