UNPKG

@exabyte-io/chimpy

Version:

Develop acceptance tests & end-to-end tests with realtime feedback.

13 lines (10 loc) 274 B
var shell = require('shelljs'); module.exports = function exec(command, options) { if (isWindows()) { command = 'powershell.exe -Command "' + command + '"'; } return shell.exec(command, options); } function isWindows() { return process.platform === 'win32'; }