summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/race/S25.4.4.3_A4.1_T2.js
blob: c8aeb4602f4029f6cee3e9572caca3c43bebc721 (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
31
32
33
34
// |reftest| async
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
es6id: S25.4.4.3_A4.1_T2
author: Sam Mikes
description: Promise.race rejects if IteratorStep throws
features: [Symbol.iterator]
flags: [async]
---*/

var iterThrows = {};
Object.defineProperty(iterThrows, Symbol.iterator, {
  get: function() {
    return {
      next: function() {
        var v = {};
        Object.defineProperty(v, 'value', {
          get: function() {
            throw new Error("abrupt completion");
          }
        });
        return v;
      }
    };
  }
});

Promise.race(iterThrows).then(function() {
  throw new Test262Error('Promise unexpectedly fulfilled: Promise.race(iterThrows) should throw TypeError');
}, function(err) {
  assert(!!(err instanceof TypeError), 'The value of !!(err instanceof TypeError) is expected to be true');
}).then($DONE, $DONE);