UNPKG

react-cordova-boilerplate

Version:

TodoMVC example for react with development tools to build a cordova application

7 lines (5 loc) 208 B
const { spawn } = require('child_process'); const testProcess = spawn('nyc npm run test -- -coverage', { shell: true, stdio: 'inherit' }); testProcess.on('close', testCode => { process.exit(testCode); });