summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/all/S25.4.4.1_A5.1_T1.js
blob: b670d9e937e8ded3331e238009c45338281be814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// |reftest| async
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    Promise.all expects an iterable argument;
    rejects if IteratorStep() throws
es6id: S25.4.4.1_A5.1_T1
author: Sam Mikes
description: iterator.next throws, causing Promise.all to reject
features: [Symbol.iterator]
flags: [async]
---*/

var iterThrows = {};
var error = new Test262Error();
iterThrows[Symbol.iterator] = function() {
  return {
    next: function() {
      throw error;
    }
  };
};

Promise.all(iterThrows).then(function() {
  throw new Test262Error('Promise unexpectedly resolved: Promise.all(iterThrows) should throw TypeError');
}, function(reason) {
  assert.sameValue(reason, error, 'The value of reason is expected to equal the value of error');
}).then($DONE, $DONE);