summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.3_T1.js
blob: 7af732e0b44a545b847a7742cd238452f9be9f52 (plain)
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
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    PerformPromiseThen
    Ref 25.4.5.3.1
es6id: S25.4.5.3_A5.3_T1
author: Sam Mikes
description: Promise.prototype.then immediately queues handler if rejected
includes: [promiseHelper.js]
flags: [async]
---*/

var sequence = [],
    pReject,
    p = new Promise(function (resolve, reject) {
        pReject = reject;
    });

sequence.push(1);

pReject();

p.then(function () {
    $ERROR("Should not be called -- Promise rejected.");
}, function () {
    sequence.push(3);
    checkSequence(sequence, "Should be first");
}).catch($DONE);

Promise.resolve().then(function () {
    // enqueue another then-handler
    p.then(function () {
        $ERROR("Should not be called (2) -- Promise rejected.");
    }, function () {
        sequence.push(5);
        checkSequence(sequence, "Should be third");
    }).then($DONE, $DONE);

    sequence.push(4);
    checkSequence(sequence, "Should be second");
}).catch($DONE);

sequence.push(2);