From dbf779b734bf9bcb467e049bdb9e89b0d6f330bd Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 14 Jun 2021 08:12:53 -0700 Subject: [PATCH] docs(test-runner): move slowMo to launchOptions (#7098) --- docs/src/test-configuration.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/src/test-configuration.md b/docs/src/test-configuration.md index 1548d6a606..1b273d1840 100644 --- a/docs/src/test-configuration.md +++ b/docs/src/test-configuration.md @@ -38,8 +38,9 @@ module.exports = { use: { // Browser options headless: false, - slowMo: 50, - + launchOptions: { + slowMo: 50, + }, // Context options viewport: { width: 1280, height: 720 }, ignoreHTTPSErrors: true, @@ -57,7 +58,9 @@ const config: PlaywrightTestConfig = { use: { // Browser options headless: false, - slowMo: 50, + launchOptions: { + slowMo: 50, + }, // Context options viewport: { width: 1280, height: 720 },