Skip to content

Commit e7e8eba

Browse files
committed
Fix flaky tests
These tests make API calls and may need extra time to complete.
1 parent 5b6371f commit e7e8eba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ import {
1616
chai.use(chaiAsPromised);
1717
const expect = chai.expect;
1818

19-
describe('databaseFetcher', () => {
19+
describe('databaseFetcher', function() {
20+
// These tests make API calls and may need extra time to complete.
21+
this.timeout(10000);
22+
2023
describe('convertToDatabaseUrl', () => {
2124
let quickPickSpy: sinon.SinonStub;
2225
beforeEach(() => {

0 commit comments

Comments
 (0)