소스 검색

increase timeout

mizozobu 7 년 전
부모
커밋
9fdaeae7e3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/test/setup.js

+ 1 - 1
src/test/setup.js

@@ -4,7 +4,7 @@ const mongoose = require('mongoose');
 
 mongoose.Promise = global.Promise;
 
-jest.setTimeout(10000);
+jest.setTimeout(15000); // default 5000
 
 beforeAll(async(done) => {
   await mongoose.connect(mongoUri, { useNewUrlParser: true });