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 6857a2f commit 1166a2eCopy full SHA for 1166a2e
src/vs/editor/contrib/inlineCompletions/test/timeTravelScheduler.ts
@@ -172,7 +172,7 @@ export class AsyncSchedulerProcessor extends Disposable {
172
// This allows promises created by a previous task to settle and schedule tasks before the next task is run.
173
// Tasks scheduled in those promises might have to run before the current next task.
174
Promise.resolve().then(() => {
175
- process.nextTick(() => this.process());
+ originalGlobalValues.setTimeout(() => this.process());
176
});
177
}
178
0 commit comments