We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb9cd4 commit 1117cefCopy full SHA for 1117cef
tests/e2e/tutorials/tutorialBase.js
@@ -54,7 +54,8 @@ class TutorialBase {
54
55
let resp = null;
56
try {
57
- resp = await this.__responsesQueue.waitUntilResponse("open");
+ const openStudyTimeout = 20000;
58
+ resp = await this.__responsesQueue.waitUntilResponse("open", openStudyTimeout);
59
}
60
catch(err) {
61
console.error(this.__templateName, "could not be started", err);
0 commit comments