Skip to content

Commit 38bf287

Browse files
Increase timeout for opening new notebook editors in testing
1 parent 91cac73 commit 38bf287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vscode-common/src/testUtil/openNewEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function waitForEditorToOpen() {
110110
if (vscode.window.activeTextEditor != null) {
111111
clearInterval(interval);
112112
// Give it a moment to settle
113-
setTimeout(resolve, 100);
113+
setTimeout(resolve, 200);
114114
} else {
115115
count++;
116116
if (count === 20) {

0 commit comments

Comments
 (0)