diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Set/constructor.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Set/constructor.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Set/constructor.js b/js/src/tests/test262/built-ins/Set/constructor.js new file mode 100644 index 0000000000..fb34784c2e --- /dev/null +++ b/js/src/tests/test262/built-ins/Set/constructor.js @@ -0,0 +1,12 @@ +// 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 +description: > + The Set constructor is the %Set% intrinsic object and the + initial value of the Set property of the global object. +---*/ + +assert.sameValue(typeof Set, "function", "`typeof Set` is `'function'`"); + +reportCompare(0, 0); |