summaryrefslogtreecommitdiff
path: root/src/spread/obj-override-immutable.case
blob: 836af9841f20a7177dddf2fd4721c0f00ad289c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2017 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Object Spread overriding immutable properties
template: default
esid: pending
includes: [propertyHelper.js]
features: [object-spread]
---*/

//- setup

let o = {b: 2};
Object.defineProperty(o, "a", {value: 1, enumerable: true, writable: false, configurable: true});

//- args
{...o, a: 3}
//- params
obj
//- body
assert.sameValue(obj.a, 3)
assert.sameValue(obj.b, 2);

verifyEnumerable(obj, "a");
verifyWritable(obj, "a");
verifyConfigurable(obj, "a");

verifyEnumerable(obj, "b");
verifyWritable(obj, "b");
verifyConfigurable(obj, "b");