Skip to content

Commit 1117cef

Browse files
authored
Increase openStudy timeout (#1462)
* increase openStudy timeout
1 parent feb9cd4 commit 1117cef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/e2e/tutorials/tutorialBase.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ class TutorialBase {
5454

5555
let resp = null;
5656
try {
57-
resp = await this.__responsesQueue.waitUntilResponse("open");
57+
const openStudyTimeout = 20000;
58+
resp = await this.__responsesQueue.waitUntilResponse("open", openStudyTimeout);
5859
}
5960
catch(err) {
6061
console.error(this.__templateName, "could not be started", err);

0 commit comments

Comments
 (0)