Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions bin/_mocha
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ if (program.watch) {
process.on('SIGINT', function() {
showCursor();
console.log('\n');
process.exit();
process.exit(130);
});

var watchFiles = utils.files(cwd, [ 'js' ].concat(program.watchExtensions));
Expand Down Expand Up @@ -442,7 +442,7 @@ if (program.watch) {

function exitLater(code) {
process.on('exit', function() {
process.exit(code);
process.exit(Math.min(code, 255));
});
}

Expand All @@ -452,7 +452,7 @@ function exit(code) {
// https://github.com/visionmedia/mocha/issues/333 has a good discussion
function done() {
if (!(draining--)) {
process.exit(code);
process.exit(Math.min(code, 255));
}
}

Expand All @@ -470,6 +470,11 @@ function exit(code) {

process.on('SIGINT', function() {
runner.abort();

// This is a hack:
// Instead of `process.exit(130)`, set runner.failures to 130 (exit code for SIGINT)
// The amount of failures will be emitted as error code later
runner.failures = 130;
});

/**
Expand Down