diff --git a/playwright-ct.config.js b/playwright-ct.config.js index c7631a9..8cee8b4 100644 --- a/playwright-ct.config.js +++ b/playwright-ct.config.js @@ -34,6 +34,12 @@ module.exports = defineConfig({ /* keep only videos for failed tests */ video: 'retain-on-failure', + + launchOptions: { + // https://playwright.dev/docs/test-use-options#more-browser-and-context-options + // slow down the tests to make queries more stable + slowMo: 50, + }, }, outputDir: './playwright/.test-results', });