2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
info: Promise.race rejects on non-iterable argument
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.3_A2.2_T2
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.race rejects if argument is not object or is non-iterable
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2014-10-23 19:58:31 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
Promise.race(new Error("abrupt")).then(function () {
|
|
|
|
$ERROR('Promise unexpectedly resolved: Promise.race(abruptCompletion) should throw TypeError');
|
|
|
|
}, function (err) {
|
|
|
|
if (!(err instanceof TypeError)) {
|
|
|
|
$ERROR('Expected TypeError, got ' + err);
|
|
|
|
}
|
|
|
|
}).then($DONE, $DONE);
|
|
|
|
|