-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
unhandled_rejections.js
875 lines (752 loc) · 28.5 KB
/
unhandled_rejections.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
"use strict";
var assert = require("assert");
var testUtils = require("./helpers/util.js");
var noop = testUtils.noop;
var isStrictModeSupported = testUtils.isStrictModeSupported;
var onUnhandledFail = testUtils.onUnhandledFail;
var onUnhandledSucceed = testUtils.onUnhandledSucceed;
function yesE() {
return new Error();
}
function notE() {
var rets = [{}, []];
return rets[Math.random()*rets.length|0];
}
function cleanUp() {
Promise.onPossiblyUnhandledRejection(null);
Promise.onUnhandledRejectionHandled(null);
}
function setupCleanUps() {
beforeEach(cleanUp);
afterEach(cleanUp);
}
describe("Will report rejections that are not handled in time", function() {
setupCleanUps();
specify("Immediately rejected not handled at all", function testFunction() {
var promise = Promise.defer();
promise.reject(yesE());
return onUnhandledSucceed();
});
specify("Eventually rejected not handled at all", function testFunction() {
var promise = Promise.defer();
setTimeout(function(){
promise.reject(yesE());
}, 1);
return onUnhandledSucceed();
});
specify("Immediately rejected handled too late", function testFunction() {
var promise = Promise.defer();
promise.reject(yesE());
setTimeout(function() {
promise.promise.then(assert.fail, function(){});
}, 150);
return onUnhandledSucceed();
});
specify("Eventually rejected handled too late", function testFunction() {
var promise = Promise.defer();
setTimeout(function(){
promise.reject(yesE());
setTimeout(function() {
promise.promise.then(assert.fail, function(){});
}, 150);
}, 1);
return onUnhandledSucceed();
});
});
describe("Will report rejections that are code errors", function() {
setupCleanUps();
specify("Immediately fulfilled handled with erroneous code", function testFunction() {
var deferred = Promise.defer();
var promise = deferred.promise;
deferred.fulfill(null);
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
});
return onUnhandledSucceed();
});
specify("Eventually fulfilled handled with erroneous code", function testFunction() {
var deferred = Promise.defer();
var promise = deferred.promise;
setTimeout(function(){
deferred.fulfill(null);
}, 1);
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
});
return onUnhandledSucceed();
});
specify("Already fulfilled handled with erroneous code but then recovered and failDeferred again", function testFunction() {
var err = yesE();
var promise = Promise.resolve(null);
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
}).then(assert.fail, function(e){
assert.ok(e instanceof Promise.TypeError);
}).then(function(){
//then assert.failing again
//this error should be reported
throw err;
});
return onUnhandledSucceed(err);
});
specify("Immediately fulfilled handled with erroneous code but then recovered and failDeferred again", function testFunction() {
var err = yesE();
var deferred = Promise.defer();
var promise = deferred.promise;
deferred.fulfill(null);
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
}).then(assert.fail, function(e){
assert.ok(e instanceof Promise.TypeError)
//Handling the type error here
}).then(function(){
//then assert.failing again
//this error should be reported
throw err;
});
return onUnhandledSucceed(err);
});
specify("Eventually fulfilled handled with erroneous code but then recovered and failDeferred again", function testFunction() {
var err = yesE();
var deferred = Promise.defer();
var promise = deferred.promise;
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
}).then(assert.fail, function(e){
assert.ok(e instanceof Promise.TypeError)
//Handling the type error here
}).then(function(){
//then assert.failing again
//this error should be reported
throw err;
});
setTimeout(function(){
deferred.fulfill(null);
}, 1);
return onUnhandledSucceed(err);
});
specify("Already fulfilled handled with erroneous code but then recovered in a parallel handler and failDeferred again", function testFunction() {
var err = yesE();
var promise = Promise.resolve(null);
promise.then(function(itsNull){
itsNull.will.fail.four.sure();
}).then(assert.fail, function(e){
assert.ok(e instanceof Promise.TypeError)
});
promise.then(function(){
//then assert.failing again
//this error should be reported
throw err;
});
return onUnhandledSucceed(err);
});
});
describe("Will report rejections that are not instanceof Error", function() {
setupCleanUps();
specify("Immediately rejected with non instanceof Error", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.reject(notE());
return onUnhandledSucceed();
});
specify("Eventually rejected with non instanceof Error", function testFunction() {
var failDeferred = Promise.defer();
setTimeout(function(){
failDeferred.reject(notE());
}, 1);
return onUnhandledSucceed();
});
});
describe("Will handle hostile rejection reasons like frozen objects", function() {
setupCleanUps();
specify("Immediately rejected with non instanceof Error", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.reject(Object.freeze({}));
return onUnhandledSucceed(function(e) {
return true;
});
});
specify("Eventually rejected with non instanceof Error", function testFunction() {
var failDeferred = Promise.defer();
var obj = {};
setTimeout(function(){
failDeferred.reject(Object.freeze(obj));
}, 1);
return onUnhandledSucceed(function(e) {
return e === obj;
});
});
});
describe("Will not report rejections that are handled in time", function() {
setupCleanUps();
specify("Already rejected handled", function testFunction() {
var failDeferred = Promise.reject(yesE()).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Immediately rejected handled", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.promise.caught(noop);
failDeferred.reject(yesE());
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Eventually rejected handled", function testFunction() {
var failDeferred = Promise.defer();
setTimeout(function() {
failDeferred.reject(yesE());
}, 1);
failDeferred.promise.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Already rejected handled in a deep sequence", function testFunction() {
var failDeferred = Promise.reject(yesE());
failDeferred
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){})
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Immediately rejected handled in a deep sequence", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.promise.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){})
.caught(noop);
failDeferred.reject(yesE());
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Eventually handled in a deep sequence", function testFunction() {
var failDeferred = Promise.defer();
setTimeout(function() {
failDeferred.reject(yesE());
}, 1);
failDeferred.promise.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){})
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Already rejected handled in a middle parallel deep sequence", function testFunction() {
var failDeferred = Promise.reject(yesE());
failDeferred
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
failDeferred
.then(function(){})
.then(function(){}, null, function(){})
.then(assert.fail, function(){
});
failDeferred
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
return onUnhandledSucceed(undefined, 2);
});
specify("Immediately rejected handled in a middle parallel deep sequence", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then(assert.fail, function(){
});
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
failDeferred.reject(yesE());
return onUnhandledSucceed(undefined, 2);
});
specify("Eventually handled in a middle parallel deep sequence", function testFunction() {
var failDeferred = Promise.defer();
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then(assert.fail, function(){
});
failDeferred.promise
.then(function(){})
.then(function(){}, null, function(){})
.then()
.then(function(){});
setTimeout(function(){
failDeferred.reject(yesE());
}, 1);
return onUnhandledSucceed(undefined, 2);
});
});
describe("immediate assert.failures without .then", function testFunction() {
setupCleanUps();
var err = new Error('');
specify("Promise.reject", function testFunction() {
Promise.reject(err);
return onUnhandledSucceed(function(e) {
return e === err;
});
});
specify("new Promise throw", function testFunction() {
new Promise(function() {
throw err;
});
return onUnhandledSucceed(function(e) {
return e === err;
});
});
specify("new Promise reject", function testFunction() {
new Promise(function(_, r) {
r(err);
});
return onUnhandledSucceed(function(e) {
return e === err;
});
});
specify("Promise.method", function testFunction() {
Promise.method(function() {
throw err;
})();
return onUnhandledSucceed(function(e) {
return e === err;
});
});
specify("Promise.all", function testFunction() {
Promise.all([Promise.reject(err)]);
return onUnhandledSucceed(function(e) {
return e === err;
});
});
});
describe("immediate assert.failures with .then", function testFunction() {
setupCleanUps();
var err = new Error('');
specify("Promise.reject", function testFunction() {
Promise.reject(err).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("new Promise throw", function testFunction() {
new Promise(function() {
throw err;
}).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("new Promise reject", function testFunction() {
new Promise(function(_, r) {
r(err);
}).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Promise.method", function testFunction() {
Promise.method(function() {
throw err;
})().caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Promise.all", function testFunction() {
Promise.all([Promise.reject("err")])
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Promise.all many", function testFunction() {
Promise.all([Promise.reject("err"), Promise.reject("err2")])
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Promise.all many, latter async", function testFunction() {
Promise.all([Promise.reject("err"), Promise.delay(1).thenThrow(new Error())])
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Promise.all many pending", function testFunction() {
var a = new Promise(function(v, w){
setTimeout(function(){w("err");}, 1);
});
var b = new Promise(function(v, w){
setTimeout(function(){w("err2");}, 1);
});
Promise.all([a, b])
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("Already rejected promise for a collection", function testFunction(){
Promise.settle(Promise.reject(err))
.caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
});
describe("gh-118", function() {
setupCleanUps();
specify("eventually rejected promise", function testFunction() {
Promise.resolve().then(function() {
return new Promise(function(_, reject) {
setTimeout(function() {
reject(13);
}, 1);
});
}).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("already rejected promise", function testFunction() {
Promise.resolve().then(function() {
return Promise.reject(13);
}).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
specify("immediately rejected promise", function testFunction() {
Promise.resolve().then(function() {
return new Promise(function(_, reject) {
reject(13);
});
}).caught(noop);
return onUnhandledFail(isStrictModeSupported ? testFunction : arguments.callee);
});
});
describe("Promise.onUnhandledRejectionHandled", function() {
specify("should be called when unhandled promise is later handled", function() {
var unhandledPromises = [];
var spy1 = testUtils.getSpy();
var spy2 = testUtils.getSpy();
Promise.onPossiblyUnhandledRejection(spy1(function(reason, promise) {
unhandledPromises.push({
reason: reason,
promise: promise
});
}));
Promise.onUnhandledRejectionHandled(spy2(function(promise) {
assert.equal(unhandledPromises.length, 1);
assert(unhandledPromises[0].promise === promise);
assert(promise === a);
assert(unhandledPromises[0].reason === reason);
}));
var reason = new Error("error");
var a = new Promise(function(){
throw reason;
});
setTimeout(function() {
Promise._unhandledRejectionCheck();
a.then(assert.fail, function(){});
}, 1);
return Promise.all([spy1.promise, spy2.promise]);
});
});
describe("global events", function() {
var attachGlobalHandler, detachGlobalHandlers;
if (typeof process !== "undefined" &&
typeof process.version === "string" &&
typeof window === "undefined") {
attachGlobalHandler = function(name, fn) {
process.on(name, fn);
};
detachGlobalHandlers = function() {
process.removeAllListeners("unhandledRejection");
process.removeAllListeners("rejectionHandled");
};
} else {
attachGlobalHandler = function(name, fn) {
window[("on" + name).toLowerCase()] = fn;
};
detachGlobalHandlers = function() {
window.onunhandledrejection = null;
window.onrejectionhandled = null;
};
}
setupCleanUps();
beforeEach(detachGlobalHandlers);
afterEach(detachGlobalHandlers);
specify("are fired", function() {
return new Promise(function(resolve, reject) {
var err = new Error();
var receivedPromise;
attachGlobalHandler("unhandledRejection", function(reason, promise) {
assert.strictEqual(reason, err);
receivedPromise = promise;
});
attachGlobalHandler("rejectionHandled", function(promise) {
assert.strictEqual(receivedPromise, promise);
resolve();
});
var promise = new Promise(function() {throw err;});
setTimeout(function() {
Promise._unhandledRejectionCheck();
promise.then(assert.fail, function(){});
}, 1);
});
});
specify("are fired with local events", function() {
return new Promise(function(resolve, reject) {
var expectedOrder = [1, 2, 3, 4];
var order = [];
var err = new Error();
var receivedPromises = [];
Promise.onPossiblyUnhandledRejection(function(reason, promise) {
assert.strictEqual(reason, err);
receivedPromises.push(promise);
order.push(1);
});
Promise.onUnhandledRejectionHandled(function(promise) {
assert.strictEqual(receivedPromises[0], promise);
order.push(3);
});
attachGlobalHandler("unhandledRejection", function(reason, promise) {
assert.strictEqual(reason, err);
receivedPromises.push(promise);
order.push(2);
});
attachGlobalHandler("rejectionHandled", function(promise) {
assert.strictEqual(receivedPromises[1], promise);
order.push(4);
assert.deepEqual(expectedOrder, order);
assert.strictEqual(receivedPromises.length, 2);
resolve();
});
var promise = new Promise(function() {throw err;});
setTimeout(function() {
Promise._unhandledRejectionCheck();
promise.then(assert.fail, function(){});
}, 1);
});
});
});
var windowDomEventSupported = true;
try {
var event = document.createEvent("CustomEvent");
event.initCustomEvent("testingtheevent", false, true, {});
self.dispatchEvent(event);
} catch (e) {
windowDomEventSupported = false;
}
if (windowDomEventSupported) {
describe("dom events", function() {
var events = [];
beforeEach(detachEvents);
afterEach(detachEvents);
function detachEvents() {
events.forEach(function(e) {
self.removeEventListener(e.type, e.fn, false);
});
events = [];
}
function attachEvent(type, fn) {
events.push({type: type, fn: fn});
self.addEventListener(type, fn, false);
}
specify("are fired", function() {
return new Promise(function(resolve, reject) {
var order = [];
var err = new Error();
var promise = Promise.reject(err);
attachEvent("unhandledrejection", function(e) {
e.preventDefault();
assert.strictEqual(e.detail.promise, promise);
assert.strictEqual(e.detail.reason, err);
assert.strictEqual(e.promise, promise);
assert.strictEqual(e.reason, err);
order.push(1);
});
attachEvent("unhandledrejection", function(e) {
assert.strictEqual(e.detail.promise, promise);
assert.strictEqual(e.detail.reason, err);
assert.strictEqual(e.promise, promise);
assert.strictEqual(e.reason, err);
assert.strictEqual(e.defaultPrevented, true);
order.push(2);
});
attachEvent("rejectionhandled", function(e) {
e.preventDefault();
assert.strictEqual(e.detail.promise, promise);
assert.strictEqual(e.detail.reason, undefined);
assert.strictEqual(e.promise, promise);
assert.strictEqual(e.reason, undefined);
order.push(3);
});
attachEvent("rejectionhandled", function(e) {
assert.strictEqual(e.detail.promise, promise);
assert.strictEqual(e.detail.reason, undefined);
assert.strictEqual(e.promise, promise);
assert.strictEqual(e.reason, undefined);
assert.strictEqual(e.defaultPrevented, true);
order.push(4);
resolve();
});
setTimeout(function() {
Promise._unhandledRejectionCheck();
promise.then(assert.fail, function(r) {
order.push(5);
assert.strictEqual(r, err);
assert.deepEqual(order, [1,2,3,4,5]);
});
}, 1);
});
})
});
if (typeof Worker !== "undefined") {
describe("dom events in a worker", function() {
var worker;
beforeEach(function () {
worker = new Worker("./worker.js");
});
afterEach(function () {
worker.terminate();
});
specify("are fired", function() {
var order = [];
return new Promise(function(resolve, reject) {
worker.onmessage = function (message) {
try {
switch(message.data) {
case "unhandledrejection":
order.push(1);
break;
case "rejectionhandled":
order.push(2);
resolve();
break;
default:
throw new Error("unexpected message: " + message);
}
}
catch (e) {
reject(e);
}
};
worker.postMessage("reject");
}).then(function () {
assert.deepEqual(order, [1, 2]);
});
});
});
}
}
describe("Unhandled rejection when joining chains with common rejected parent", function testFunction() {
specify("GH 645", function() {
var aError = new Error('Something went wrong');
var a = Promise.try(function(){
throw aError;
});
var b = Promise.try(function(){
throw new Error('Something went wrong here as well');
});
var c = Promise
.join(a, b)
.spread(function( a, b ){
return a+b;
});
var test1 = Promise
.join(a, c)
.spread(function( a, product ){
// ...
})
.caught(Error, function(e) {
assert.strictEqual(aError, e);
});
var test2 = onUnhandledFail(testFunction);
return Promise.all([test1, test2]);
});
});
var asyncAwaitSupported = (function() {
try {
new Function("async function abc() {}");
return true;
} catch (e) {
return false;
}
})();
if (asyncAwaitSupported) {
describe("No unhandled rejection from async await", function () {
setupCleanUps();
specify("gh-1404", function testFunction() {
var ret = onUnhandledFail(testFunction);
Promise.using(Promise.resolve(),
(new Function("Bluebird", "return async function() { await Bluebird.reject(new Error('foo')); }"))(Promise))
.caught(function() {});
return ret;
});
});
}
describe("issues", function () {
setupCleanUps();
specify("GH-1501-1", function testFunction() {
var ret = onUnhandledFail(testFunction);
Promise.reduce([Promise.resolve("foo"), Promise.reject(new Error("reason"), Promise.resolve("bar"))],
function() {},
{}).caught(function() {});
return ret;
});
specify("GH-1501-2", function testFunction() {
var ret = onUnhandledFail(testFunction);
Promise.reduce([Promise.delay(1), Promise.reject(new Error("reason"))],
function() {},
{}).caught(function() {});
return ret;
});
specify("GH-1501-3", function testFunction() {
var ret = onUnhandledFail(testFunction);
Promise.reduce([Promise.reject(new Error("reason"))],
function() {},
Promise.reject(new Error("reason2"))).caught(function() {});
return ret;
});
specify("GH-1487-1", function testFunction() {
var ret = onUnhandledFail(testFunction);
var p = Promise.reject( new Error('foo') );
Promise.map( p, function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-2", function testFunction() {
var ret = onUnhandledFail(testFunction);
var arr = [ Promise.reject( new Error('foo') ) ];
Promise.map( arr, function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-3", function testFunction() {
var ret = onUnhandledFail(testFunction);
var p = Promise.reject( new Error('foo') );
p.map( function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-4", function testFunction() {
var ret = onUnhandledFail(testFunction);
var arr = [ Promise.reject( new Error('foo') ) ];
var p = Promise.resolve( arr );
p.map( function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-5", function testFunction() {
var ret = onUnhandledFail(testFunction);
var p = Promise.reject( new Error('foo') );
Promise.filter( p, function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-6", function testFunction() {
var ret = onUnhandledFail(testFunction);
var arr = [ Promise.reject( new Error('foo') ) ];
Promise.filter( arr, function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-7", function testFunction() {
var ret = onUnhandledFail(testFunction);
var p = Promise.reject( new Error('foo') );
p.filter( function() {} ).caught( function() {} );
return ret;
});
specify("GH-1487-8", function testFunction() {
var ret = onUnhandledFail(testFunction);
var arr = [ Promise.reject( new Error('foo') ) ];
var p = Promise.resolve( arr );
p.filter( function() {} ).caught( function() {} );
return ret;
});
})