foreachasync.js/test-bluebird.js

38 lines
980 B
JavaScript
Raw Permalink Normal View History

2013-08-06 09:51:22 +00:00
(function () {
"use strict";
2018-03-28 05:41:41 +00:00
var PromiseA = require('bluebird');
var forEachAsync = require('./forEachAsync').forEachAsync;
var context = {};
2013-08-06 09:51:22 +00:00
2015-01-03 01:08:02 +00:00
forEachAsync([0, 500, 70, 200, 400, 100], function (element, i, arr) {
2015-01-03 01:39:27 +00:00
console.log(i, '/', arr.length, 'began');
2018-03-28 05:41:41 +00:00
var result;
// test that thisness is applied
2013-08-06 09:51:22 +00:00
this[element] = i;
2015-01-03 01:39:27 +00:00
if (i % 2) {
// test that synchronous callbacks don't mess things up
2015-01-03 01:39:27 +00:00
result = PromiseA.resolve();
} else {
// test asynchronous callbacks
2018-03-28 05:41:41 +00:00
result = new PromiseA(function (resolve/*, reject*/) {
2015-01-03 01:08:02 +00:00
setTimeout(resolve, element);
});
}
2015-01-03 01:39:27 +00:00
return result.then(function () {
// test that array order is as expected
console.log(i, '/', arr.length, 'complete');
});
2015-01-03 01:08:02 +00:00
}, context).then(function () {
// test that thisness carried
console.log('context', context);
}).then(function () {
// test then chaining
console.log("now wasn't that nice?");
2013-08-06 09:51:22 +00:00
});
}());