Bump test timeouts

Necessary because we just added some extra waiting
in order to ensure that config listeners have all
fired.
This commit is contained in:
Andrew Eisenberg
2021-02-22 12:38:31 -08:00
parent 48df77f673
commit 5023f91475

View File

@@ -15,7 +15,10 @@ import {
chai.use(chaiAsPromised);
const expect = chai.expect;
describe('config listeners', () => {
describe('config listeners', function() {
// Because we are adding some extra waiting, need to bump the test timeouts.
this.timeout(5000);
let sandbox: Sinon.SinonSandbox;
beforeEach(() => {
sandbox = Sinon.createSandbox();