mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-17 12:11:33 +08:00
15 lines
420 B
JavaScript
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();
|