Fix flaky tests

These tests make API calls and may need extra time to complete.
This commit is contained in:
Andrew Eisenberg
2020-10-21 10:09:47 -07:00
parent 5b6371fb94
commit e7e8ebab98

View File

@@ -16,7 +16,10 @@ import {
chai.use(chaiAsPromised); chai.use(chaiAsPromised);
const expect = chai.expect; const expect = chai.expect;
describe('databaseFetcher', () => { describe('databaseFetcher', function() {
// These tests make API calls and may need extra time to complete.
this.timeout(10000);
describe('convertToDatabaseUrl', () => { describe('convertToDatabaseUrl', () => {
let quickPickSpy: sinon.SinonStub; let quickPickSpy: sinon.SinonStub;
beforeEach(() => { beforeEach(() => {