Browse Source

ci: re-enable logging on CI (#16257)

Jeremy Apthorp 6 years ago
parent
commit
ad3ea6ec53
3 changed files with 3 additions and 3 deletions
  1. 1 1
      .circleci/config.yml
  2. 1 1
      vsts-arm-test-steps.yml
  3. 1 1
      vsts.yml

+ 1 - 1
.circleci/config.yml

@@ -681,7 +681,7 @@ steps-tests: &steps-tests
         command: |
           cd src
           export ELECTRON_OUT_DIR=Default
-          (cd electron && npm run test -- --ci)
+          (cd electron && npm run test -- --ci --enable-logging)
     - run:
         name: Check test results existence
         command: |

+ 1 - 1
vsts-arm-test-steps.yml

@@ -79,7 +79,7 @@ steps:
 
 - bash: |
    cd src
-   ./out/Default/electron electron/spec --ci
+   ./out/Default/electron electron/spec --ci --enable-logging
   displayName: 'Run Electron tests'
   timeoutInMinutes: 10
 

+ 1 - 1
vsts.yml

@@ -360,7 +360,7 @@ jobs:
 
   - bash: |
       export ELECTRON_OUT_DIR=Default
-      (cd src/electron && npm run test -- --ci)
+      (cd src/electron && npm run test -- --ci --enable-logging)
     displayName: Run Electron test suite
     timeoutInMinutes: 10