node/test/parallel/test-regress-GH-4256.js
Rich Trott c14726cefc 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-04 14:20:03 -08:00

7 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);