UNPKG

heroku

Version:

CLI to interact with Heroku

8 lines (5 loc) 265 B
#!/usr/bin/env node const os = require('os') const {spawn} = require('child_process') if (os.platform() === 'win32' || os.platform() === 'windows') console.log('skipping on windows') else spawn('yarn bats test/acceptance/*.bats', {stdio: 'inherit', shell: true})