Meghan Denny 60963bf468
chore: convert many tests to use verifyProperty (#4263)
Co-authored-by: André Bargull <andre.bargull@gmail.com>
2024-10-14 11:25:05 +02:00

22 lines
490 B
JavaScript

// Copyright 2015 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: |
Symbol.species is a well-known symbol
es6id: 19.4.2.10
author: Sam Mikes
description: Symbol.species exists
includes: [propertyHelper.js]
features: [Symbol.species]
---*/
assert(Symbol !== undefined, "Symbol exists");
assert(Symbol.species !== undefined, "Symbol.species exists");
verifyProperty(Symbol, "species", {
writable: false,
enumerable: false,
configurable: false,
});