diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Set/name.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Set/name.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Set/name.js b/js/src/tests/test262/built-ins/Set/name.js new file mode 100644 index 0000000000..f61b929820 --- /dev/null +++ b/js/src/tests/test262/built-ins/Set/name.js @@ -0,0 +1,19 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +es6id: 23.2.1.1 +description: > + Set ( [ iterable ] ) + + 17 ECMAScript Standard Built-in Objects + +includes: [propertyHelper.js] +---*/ + +assert.sameValue(Set.name, "Set", "The value of `Set.name` is `'Set'`"); + +verifyNotEnumerable(Set, "name"); +verifyNotWritable(Set, "name"); +verifyConfigurable(Set, "name"); + +reportCompare(0, 0); |