You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
219 B

var test = require('./tape')
var cp = require('child_process')
test('crash', function (t) {
var proc = cp.spawn('node', ['./crash.js'])
proc.on('exit', function (code) {
t.notEqual(code, 0)
t.end()
})
})