mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-22 11:12:50 +00:00
Playwright upgrade and conf improvement
This commit is contained in:
parent
5d5beb5fdc
commit
c432ff5245
4 changed files with 57 additions and 52 deletions
|
@ -22,7 +22,13 @@ export default defineConfig({
|
|||
|
||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||
reporter: 'html',
|
||||
timeout: 20 * 1000,
|
||||
|
||||
/* Long global timeout for complex tests
|
||||
* But short action/nav/expect timeouts to fail on specific step (raise locally if not enough).
|
||||
*/
|
||||
timeout: 120 * 1000,
|
||||
actionTimeout: 10 * 1000,
|
||||
navigationTimeout: 10 * 1000,
|
||||
expect: { timeout: 10 * 1000 },
|
||||
|
||||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue