-
-
Notifications
You must be signed in to change notification settings - Fork 742
Closed
Description
With the following scenario, the timeout is failing only after 30000msec
Scenario('Timeout failing', (I) => {
I.amOnPage('http://www.github.com');
I.see('Welcome home');
I.click('.header-logo-invertocat');
I.waitForText('Priced for everyone', 2); // should fail after 2 seconds
});
codeceptjs run --steps
-- FAILURES:
1) login: Login with user list:
.wait() timed out after 30000msec
Update: If I run
I.wait(1); I.see('Priced for everyone');
then it works.
but if I run only the
I.see('Priced for everyone')
then i got:
(node:47217) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot create property 'stack' on string 'codeceptjs is not defined' ^C%
Metadata
Metadata
Assignees
Labels
No labels