Files
react-native-notifications/scripts/test-all.js
2019-07-28 12:09:43 +03:00

15 lines
420 B
JavaScript

/* tslint:disable: no-console */
const exec = require('shell-utils').exec;
async function run() {
exec.execSync(`npm run clean`);
exec.execSync(`npm run test-js`);
exec.execAsyncSilent(`npm run start`);
await exec.execAsyncAll(`npm run test-unit-ios`);
// await exec.execAsyncAll(`npm run test-e2e-android`, `npm run test-e2e-ios`);
exec.execSync(`npm run clean`);
console.log('ALL PASSED!!!');
}
run();