Skip to content

Commit e56b0ff

Browse files
committed
Bump timeout for afterEach hook for travis
1 parent 43de6f1 commit e56b0ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/12-simple-queries.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ describe('Simple queries', () => {
3636
.then(() => void done())
3737
.catch(done);
3838
});
39-
afterEach(done => {
39+
afterEach(function (done) {
40+
this.timeout(10000);
4041
collection.drop()
4142
.then(() => void done())
4243
.catch(done);

0 commit comments

Comments
 (0)