blob: 2a0be6e69bf71a841b4765b0e444f2b67a7c41c7 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 26.1.4
description: >
Reflect.deleteProperty.length value and property descriptor
includes: [propertyHelper.js]
features: [Reflect]
---*/
assert.sameValue(
Reflect.deleteProperty.length, 2,
'The value of `Reflect.deleteProperty.length` is `2`'
);
verifyNotEnumerable(Reflect.deleteProperty, 'length');
verifyNotWritable(Reflect.deleteProperty, 'length');
verifyConfigurable(Reflect.deleteProperty, 'length');