It seems mocha hides the cursor during the run but it forgots to enable it again when a SIGINT is sent... In my script i had to do: ```js process.on('SIGINT', function() { // show cursor console.log("\x1B[?25h"); process.exit(); }); ```