Browse Source

Add detox loglevel trace

yogevbd 5 years ago
parent
commit
7ca32b9a8e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      scripts/test-e2e.js

+ 1
- 1
scripts/test-e2e.js View File

@@ -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} --loglevel trace` : ``}`); //-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
 }