Skip to content

Commit 87e563e

Browse files
committed
Review comments.
1 parent 3a1219b commit 87e563e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function runTestsWithRetry(suite: Suite, tries: number): Promise<void> {
2929
} catch (err) {
3030
console.error(`Exception raised while running tests: ${err}`);
3131
if (t < tries - 1)
32-
console.error('Retrying...');
32+
console.log('Retrying...');
3333
}
3434
}
3535
console.error(`Tried running suite ${tries} time(s), still failed, giving up.`);
@@ -67,10 +67,10 @@ async function main() {
6767
];
6868

6969
for (const integrationTestSuite of integrationTestSuites) {
70-
await runTestsWithRetry(integrationTestSuite, 2);
70+
await runTestsWithRetry(integrationTestSuite, 3);
7171
}
7272
} catch (err) {
73-
console.error('Unexpected exception while running tests');
73+
console.error(`Unexpected exception while running tests: ${err}`);
7474
process.exit(1);
7575
}
7676
}

0 commit comments

Comments
 (0)