Files
react-native-notifications/scripts/test.js
2019-09-14 23:08:49 +03:00

10 lines
194 B
JavaScript

const exec = require('shell-utils').exec;
run();
function run() {
exec.execSync(`npm run test-js`);
exec.execSync(`npm run test-unit-ios`);
exec.execSync(`npm run test-unit-android`);
}