Browse Source

fixed script

Daniel Zlotin 7 years ago
parent
commit
5276621aef
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      scripts/test.all.js

+ 2
- 2
scripts/test.all.js View File

1
 const shellUtils = require('shell-utils');
1
 const shellUtils = require('shell-utils');
2
 
2
 
3
 function run() {
3
 function run() {
4
-  // shellUtils.exec.execSync(`yarn run test-js`);
5
-  // shellUtils.exec.execSync(`yarn run test-unit-android && yarn run test-unit-ios`);
4
+  shellUtils.exec.execSync(`yarn run test-js`);
5
+  shellUtils.exec.execSync(`yarn run test-unit-android && yarn run test-unit-ios`);
6
   shellUtils.exec.exec(`yarn run test-e2e-android`);
6
   shellUtils.exec.exec(`yarn run test-e2e-android`);
7
   shellUtils.exec.exec(`yarn run test-e2e-ios`);
7
   shellUtils.exec.exec(`yarn run test-e2e-ios`);
8
 }
8
 }