We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0edf34c commit bc4e4edCopy full SHA for bc4e4ed
packages/vscode-common/src/testUtil/openNewEditor.ts
@@ -109,7 +109,8 @@ function waitForEditorToOpen() {
109
const interval = setInterval(() => {
110
if (vscode.window.activeTextEditor != null) {
111
clearInterval(interval);
112
- resolve();
+ // Give it a moment to settle
113
+ setTimeout(resolve, 100);
114
} else {
115
count++;
116
if (count === 20) {
0 commit comments