UNPKG

220 BPlain TextView Raw
1process.env.NODE_PATH = '/usr/local/lib/node_modules'
2
3cp = require 'child_process'
4
5task 'test','run tests', ->
6 cp.spawn "mocha"
7 ,[ "--compilers","coffee:coffee-script/register","test/"]
8 ,{ stdio: 'inherit' }