This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Required to run commands in the shell | |
# @see http://nodejs.org/api/child_process.html | |
{spawn} = require 'child_process' | |
# A basic command runner | |
run = (cmd, args) -> | |
console.log cmd, args.join ' ' | |
spawn cmd, args, stdio: 'inherit' | |
# Set up default arguments for running our Mocha tests. |