소스 검색

test: increase the test timeout

Ifedapo Olarewaju 6 년 전
부모
커밋
36c4ac650e
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      test/endtoend/wdio.remote.conf.js

+ 7 - 1
test/endtoend/wdio.remote.conf.js

@@ -33,5 +33,11 @@ exports.config = Object.assign(base.config, {
   // commands. Instead, they hook themselves up into the test process.
   // commands. Instead, they hook themselves up into the test process.
   services: ['static-server', 'sauce', new CompanionService()],
   services: ['static-server', 'sauce', new CompanionService()],
   user: process.env.SAUCE_USERNAME,
   user: process.env.SAUCE_USERNAME,
-  key: process.env.SAUCE_ACCESS_KEY
+  key: process.env.SAUCE_ACCESS_KEY,
+  // Options to be passed to Mocha.
+  // See the full list at http://mochajs.org/
+  mochaOpts: {
+    ui: 'dot',
+    timeout: 60000
+  }
 })
 })