node/test/parallel/test-vm-set-property-proxy.js
Anna Henningsen 64acae2e06
test: add vm crash regression test
Refs: https://github.com/nodejs/node/issues/34606
PR-URL: https://github.com/nodejs/node/pull/34673
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2020-08-10 17:33:23 +02:00

17 lines
418 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const vm = require('vm');
// Regression test for https://github.com/nodejs/node/issues/34606
const handler = {
getOwnPropertyDescriptor: common.mustCallAtLeast(() => {
return {};
})
};
const proxy = new Proxy({}, handler);
assert.throws(() => vm.runInNewContext('p = 6', proxy),
/getOwnPropertyDescriptor/);