We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5175c70 commit aaf7dcdCopy full SHA for aaf7dcd
package.json
@@ -22,7 +22,7 @@
22
"main": "lib/src/index",
23
"scripts": {
24
"pretest": "./node_modules/.bin/eslint *.js test",
25
- "test": "jest",
+ "test": "node scripts/test",
26
"start": "node ./scripts/start",
27
"test-e2e-ios": "node ./scripts/test-e2e --ios",
28
"test-unit-ios": "node ./scripts/test-unit --ios",
scripts/test.js
@@ -0,0 +1,9 @@
1
+const exec = require('shell-utils').exec;
2
+
3
+run();
4
5
+function run() {
6
+ exec.execSync(`jest`);
7
+ exec.execSync(`npm run test-unit-ios`);
8
+ exec.execSync(`npm run test-unit-android`);
9
+}
0 commit comments