From 878401ff2b4ee304c47920f0f6cfbb8d27935ef5 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 30 Nov 2022 15:37:31 -0800 Subject: [PATCH] docs(test-reporters): fix code snippet typos Fixes #19159 --- docs/src/test-reporters-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; ```