test262/test/harness/propertyhelper-verifynotcon...

16 lines
385 B
JavaScript
Raw Normal View History

2015-04-21 21:22:35 +02:00
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
2019-09-27 22:24:02 +02:00
Objects whose specified property is not configurable satisfy the assertion.
includes: [propertyHelper.js]
2015-04-21 21:22:35 +02:00
---*/
2019-09-27 22:24:02 +02:00
2015-04-21 21:22:35 +02:00
var obj = {};
Object.defineProperty(obj, 'a', {
configurable: false
});
verifyNotConfigurable(obj, 'a');