Skip to content

Commit 69120e0

Browse files
committed
Add extra delay in telemetry test
Some of our internal integration tests are failing occasionally. I think extending the wait time here will fix.
1 parent b7dafc3 commit 69120e0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

extensions/ql-vscode/src/vscode-tests/no-workspace/telemetry.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,8 @@ describe('telemetry reporting', function() {
367367
);
368368

369369
// Need to wait some time since the onDidChangeConfiguration listeners fire
370-
// asynchronously and we sometimes need to wait for them to complete in
371-
// order to have as successful test.
372-
await wait(50);
370+
// asynchronously. Must ensure they to complete in order to have a successful test.
371+
await wait(100);
373372
}
374373

375374
async function wait(ms = 0) {

0 commit comments

Comments
 (0)