docs(test-runner): move slowMo to launchOptions (#7098)
This commit is contained in:
parent
ad5280e5cb
commit
dbf779b734
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Reference in a new issue