diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Boolean/symbol-coercion.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Boolean/symbol-coercion.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Boolean/symbol-coercion.js b/js/src/tests/test262/built-ins/Boolean/symbol-coercion.js new file mode 100644 index 0000000000..bf712f2a2f --- /dev/null +++ b/js/src/tests/test262/built-ins/Boolean/symbol-coercion.js @@ -0,0 +1,13 @@ +// Copyright (C) 2013 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-toboolean +description: > + Boolean coercion operations on Symbols +features: [Symbol] +---*/ +var sym = Symbol(); + +assert.sameValue(Boolean(sym).valueOf(), true, "`Boolean(sym).valueOf()` returns `true`"); + +reportCompare(0, 0); |