소스 검색

Fix integration test mocha config.

Renée Kooi 6 년 전
부모
커밋
abd3b07359
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 1
      test/endtoend/wdio.base.conf.js
  2. 2 1
      test/endtoend/wdio.local.conf.js

+ 2 - 1
test/endtoend/wdio.base.conf.js

@@ -109,7 +109,8 @@ exports.config = {
   // Options to be passed to Mocha.
   // Options to be passed to Mocha.
   // See the full list at http://mochajs.org/
   // See the full list at http://mochajs.org/
   mochaOpts: {
   mochaOpts: {
-    ui: 'dot',
+    ui: 'bdd',
+    reporter: 'dot',
     timeout: 50000
     timeout: 50000
   },
   },
 
 

+ 2 - 1
test/endtoend/wdio.local.conf.js

@@ -37,7 +37,8 @@ exports.config = Object.assign(base.config, {
   // Options to be passed to Mocha.
   // Options to be passed to Mocha.
   // See the full list at http://mochajs.org/
   // See the full list at http://mochajs.org/
   mochaOpts: {
   mochaOpts: {
-    ui: 'dot',
+    ui: 'bdd',
+    reporter: 'dot',
     timeout: 60000
     timeout: 60000
   }
   }
 })
 })