2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
Promise.all with 2-element array
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.1_A8.2_T2
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.all() rejects when second promise in array rejects
|
2017-06-23 17:06:32 +02:00
|
|
|
includes: [promiseHelper.js]
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2014-10-23 19:58:31 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var rejectP2,
|
|
|
|
p1 = Promise.resolve(1),
|
|
|
|
p2 = new Promise(function (resolve, reject) {
|
|
|
|
rejectP2 = reject;
|
|
|
|
});
|
|
|
|
|
|
|
|
Promise.all([p1, p2]).then(function () {
|
|
|
|
$ERROR("Did not expect promise to be fulfilled.");
|
|
|
|
}, function (rejected) {
|
|
|
|
if (rejected !== 2) {
|
|
|
|
$ERROR("Expected promise to be rejected with 2, actually " + rejected);
|
|
|
|
}
|
|
|
|
}).then($DONE, $DONE);
|
|
|
|
|
|
|
|
rejectP2(2);
|