diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Promise/all/ctx-non-object.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Promise/all/ctx-non-object.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Promise/all/ctx-non-object.js b/js/src/tests/test262/built-ins/Promise/all/ctx-non-object.js new file mode 100644 index 0000000000..decd8ad556 --- /dev/null +++ b/js/src/tests/test262/built-ins/Promise/all/ctx-non-object.js @@ -0,0 +1,38 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + `Promise.all` invoked on a non-object value +es6id: 25.4.4.1 +info: | + 1. Let C be the this value. + 2. If Type(C) is not Object, throw a TypeError exception. +features: [Symbol] +---*/ + +assert.throws(TypeError, function() { + Promise.all.call(undefined, []); +}); + +assert.throws(TypeError, function() { + Promise.all.call(null, []); +}); + +assert.throws(TypeError, function() { + Promise.all.call(86, []); +}); + +assert.throws(TypeError, function() { + Promise.all.call('string', []); +}); + +assert.throws(TypeError, function() { + Promise.all.call(true, []); +}); + +assert.throws(TypeError, function() { + Promise.all.call(Symbol(), []); +}); + +reportCompare(0, 0); |