Skip to content

Commit 1746024

Browse files
committed
fix issue where cypress starts typing too soon into the input
1 parent 72452d8 commit 1746024

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cypress/e2e/login.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export const login = (
22
email: string = 'janedoe@atomic.dev',
33
password: string = 'password'
44
) => {
5+
cy.wait(1000);
56
cy.findByLabelText('Email *').type(email);
67
cy.findByLabelText('Password *').type(password);
78
cy.findByText('Sign in').click();

0 commit comments

Comments
 (0)