aboutsummaryrefslogtreecommitdiff
path: root/test/js/async_recursive_mid.t.js
blob: 6b67796298d6dca81fca1c58ed472fa7e4c3f36a (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
/*---
includes: [compareArray.js]
flags: [async]
---*/

let stages = [];

async function f(v) {
    if (v == 1000) {
        return;
    }

    stages.push(`f>${v}`);

    await "X";

    f(v + 1);

    stages.push(`f<${v}`);
}

f(0)
.then(v => {
    assert.compareArray(stages, ['f>0','f>1','f<0','f>2','f<1']);
})
.then($DONE, $DONE);