mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
480 B
21 lines
480 B
8 years ago
|
'use strict';
|
||
|
|
||
|
// Sandbox throws in CopyProperties() despite no code being run
|
||
|
// Issue: https://github.com/nodejs/node/issues/11902
|
||
|
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
const vm = require('vm');
|
||
|
|
||
|
const handler = {
|
||
|
getOwnPropertyDescriptor: (target, prop) => {
|
||
|
throw new Error('whoops');
|
||
|
}
|
||
|
};
|
||
|
const sandbox = new Proxy({foo: 'bar'}, handler);
|
||
|
const context = vm.createContext(sandbox);
|
||
|
|
||
|
|
||
|
assert.doesNotThrow(() => vm.runInContext('', context));
|