mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
11 lines
224 B
JavaScript
Executable File
11 lines
224 B
JavaScript
Executable File
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();
|
|
});
|
|
});
|