소스 검색

Add detox loglevel trace

yogevbd 5 년 전
부모
커밋
fbd42b0c49
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      scripts/test-e2e.js

+ 1
- 1
scripts/test-e2e.js 파일 보기

@@ -25,5 +25,5 @@ function run() {
25 25
     if (!skipBuild) {
26 26
         exec.execSync(`detox build --configuration ${configuration}`);
27 27
     }
28
-    exec.execSync(`detox test --configuration ${configuration} ${headless$} ${!android ? `-w ${workers}` : ``}`); //-f "ScreenStyle.test.js" --loglevel trace
28
+    exec.execSync(`detox test --configuration ${configuration} ${headless$} ${!android ? `-w ${workers} --loglevel trace` : ``}`); //-f "ScreenStyle.test.js" --loglevel trace
29 29
 }