mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 00:08:50 +08:00
10 lines
194 B
JavaScript
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`);
|
|
}
|