node/test/parallel/test-regress-GH-4256.js
Rich Trott ae0246641c test: remove unused vars from parallel tests
Remove all remaining unused variables from tests in test/parallel.

PR-URL: https://github.com/nodejs/node/pull/4511
Reviewed-By: James M Snell<jasnell@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2016-01-06 12:10:58 -05:00

6 lines
162 B
JavaScript

'use strict';
require('../common');
process.domain = null;
setTimeout(function() {
console.log('this console.log statement should not make node crash');
}, 1);