Skip to content

Commit feaac75

Browse files
Adds additional delay in submittedValue cypress command
1 parent acfd375 commit feaac75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/cypress/support/commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Cypress.Commands.add('submittedValue', (name = 'inputUnderTest') => {
4747
// wait before executing, this allows us to prevent race conditions where
4848
// formSubmitted.finally() has not yet been called but we're already
4949
// re-running a submission test
50-
cy.wait(200)
50+
cy.wait(500)
5151
return window.getSubmittedValue()
5252
.then(value => cy.wrap(value[name]))
5353
})

0 commit comments

Comments
 (0)