2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-10-23 19:58:31 +02:00
|
|
|
Promise throws TypeError when 'this' is rejected promise
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.3.1_A2.4_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.call(rejected Promise) throws TypeError
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2014-10-23 19:58:31 +02:00
|
|
|
---*/
|
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
var p = new Promise(function(resolve, reject) {
|
|
|
|
reject(1)
|
|
|
|
});
|
2014-10-23 19:58:31 +02:00
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
p.catch(function() {
|
|
|
|
Promise.call(p, function() {});
|
|
|
|
}).then(function() {
|
|
|
|
$ERROR("Unexpected resolution - expected TypeError");
|
|
|
|
}, function(err) {
|
|
|
|
if (!(err instanceof TypeError)) {
|
|
|
|
$ERROR("Expected TypeError, got " + err);
|
|
|
|
}
|
2014-10-23 19:58:31 +02:00
|
|
|
}).then($DONE, $DONE);
|