In node vm: ``` javascript var c = vm.createContext({}); vm.runInContext('Array.foo = 1', c); assert(1 === vm.runInContext('Array.foo')); ``` And that's not the case in this module because it disposes of iframe (real context) after each run.