diff --git a/test/built-ins/Reflect/Symbol.toStringTag.js b/test/built-ins/Reflect/Symbol.toStringTag.js new file mode 100644 index 0000000000..203962c478 --- /dev/null +++ b/test/built-ins/Reflect/Symbol.toStringTag.js @@ -0,0 +1,21 @@ +// Copyright (C) 2020 Jordan Harband. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + `Symbol.toStringTag` property descriptor +info: | + The initial value of the @@toStringTag property is the String value + "Reflect". + + This property has the attributes { [[Writable]]: false, [[Enumerable]]: + false, [[Configurable]]: true }. +includes: [propertyHelper.js] +features: [Symbol.toStringTag, Reflect] +---*/ + +verifyProperty(Reflect, Symbol.toStringTag, { + value: 'Reflect', + enumerable: false, + writable: false, + configurable: true, +});