Add extra delay in telemetry test

Some of our internal integration tests are failing occasionally. I
think extending the wait time here will fix.
This commit is contained in:
Andrew Eisenberg
2022-02-09 12:21:27 -08:00
parent b7dafc31bb
commit 69120e0799

View File

@@ -367,9 +367,8 @@ describe('telemetry reporting', function() {
);
// Need to wait some time since the onDidChangeConfiguration listeners fire
// asynchronously and we sometimes need to wait for them to complete in
// order to have as successful test.
await wait(50);
// asynchronously. Must ensure they to complete in order to have a successful test.
await wait(100);
}
async function wait(ms = 0) {