Skip to content
Snippets Groups Projects
Commit cc7c77b9 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Add test for Promise prototype property descriptor

parent 23659d61
Branches
No related tags found
No related merge requests found
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise.prototype
es6id: 25.4.4.2
description: Property descriptor of 'prototype' property
info: >
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: false }.
includes: [propertyHelper.js]
---*/
verifyNotEnumerable(Promise, 'prototype');
verifyNotWritable(Promise, 'prototype');
verifyNotConfigurable(Promise, 'prototype');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment