浏览代码

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
 }