docs(test-runner): move slowMo to launchOptions (#7098)

This commit is contained in:
Max Schmitt 2021-06-14 08:12:53 -07:00 committed by GitHub
parent ad5280e5cb
commit dbf779b734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 },