mirror of https://github.com/lukechilds/node.git
Browse Source
common.js contains code that checks for variables leaking into the global namespace. Load common.js in all tests that do not intentionally leak variables. PR-URL: https://github.com/nodejs/node/pull/3095 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>v5.x
Rich Trott
9 years ago
48 changed files with 48 additions and 0 deletions
@ -1,2 +1,3 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
process.stdin.emit('end'); |
|||
|
@ -1,3 +1,4 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
process.stdin.resume(); |
|||
process.stdin.pause(); |
|||
|
Loading…
Reference in new issue