summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-set-property-proxy.js
blob: 2e3293bf62947c338d76b0290339fac6313aee39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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/);