2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.3_A4.1_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.race rejects if IteratorStep throws
|
2015-12-03 22:05:47 +01:00
|
|
|
features: [Symbol.iterator]
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2014-10-23 19:58:31 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var iterThrows = {};
|
2015-06-23 18:03:09 +02:00
|
|
|
var error = new Test262Error();
|
2018-02-15 21:11:21 +01:00
|
|
|
iterThrows[Symbol.iterator] = function() {
|
|
|
|
return {
|
|
|
|
next: function() {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
2015-06-23 18:03:09 +02:00
|
|
|
};
|
2014-10-23 19:58:31 +02:00
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
Promise.race(iterThrows).then(function() {
|
2021-07-21 21:48:13 +02:00
|
|
|
throw new Test262Error('Promise unexpectedly fulfilled: Promise.race(iterThrows) should throw TypeError');
|
2018-02-15 21:11:21 +01:00
|
|
|
}, function(reason) {
|
2021-08-18 17:44:54 +02:00
|
|
|
assert.sameValue(reason, error, 'The value of reason is expected to equal the value of error');
|
2018-02-15 21:11:21 +01:00
|
|
|
}).then($DONE, $DONE);
|