mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

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>
7 lines
162 B
JavaScript
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);
|