summaryrefslogtreecommitdiff
path: root/support/es.test.js
blob: 9a307cdc613bb0cc2ed50e36f7cb4a8203420dfd (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
// simple async example to test ES module build output

import {default as async, waterfall as wf, wrapSync} from  "../build-es/index";
import constant from "../build-es/constant";
import forEachOf from "../build-es/forEachOf";

wf([
    constant(42),
    function (val, next) {
        async.setImmediate(() => {
            next(null, val);
        });
    },
    wrapSync((a) => { return a; }),
    function (val, next) {
        async.forEachOf({a: 1}, (v, key, cb) => {
            if (v !== 1 && key !== 'a') return cb(new Error('fail!'));
            cb();
        }, (err) => { next (err, val)});
    },
    function (val, next) {
        forEachOf([1, 2, 3], (v, key, cb) => {
            val += key
            cb()
        }, (err) => { next(err, val - 3) })
    }
], (err, result) => {
    if (err) { throw err; }
    console.log(result);
    if (result !== 42) {
        console.log("fail");
        process.exit(1);
    }
});