I have something like this and I would like to kill child process with given signal:
shelljs.exec('istanbul my-daemon', {async: true});
// Tests here
// Once tests done send SIGINT to the child process
Is there a way to do this with ShellJS instead of native spawn?