2013-08-06 09:51:22 +00:00
|
|
|
(function () {
|
|
|
|
"use strict";
|
|
|
|
|
2018-03-28 05:41:41 +00:00
|
|
|
/* globals Promise */
|
|
|
|
var forEachAsync = require('./forEachAsync').forEachAsync.create(Promise);
|
|
|
|
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) {
|
2018-03-28 05:41:41 +00:00
|
|
|
var p;
|
2013-08-06 10:00:37 +00:00
|
|
|
|
|
|
|
// test that thisness is applied
|
2013-08-06 09:51:22 +00:00
|
|
|
this[element] = i;
|
2013-08-06 10:00:37 +00:00
|
|
|
|
2015-01-03 01:39:27 +00:00
|
|
|
if (i % 2) {
|
2013-08-06 10:00:37 +00:00
|
|
|
// test that synchronous callbacks don't mess things up
|
2015-01-03 01:39:27 +00:00
|
|
|
p = Promise.resolve();
|
2013-08-06 10:00:37 +00:00
|
|
|
} else {
|
|
|
|
// test asynchronous callbacks
|
2015-01-03 01:39:27 +00:00
|
|
|
p = new Promise(function (resolve/*, reject*/) {
|
2015-01-03 01:08:02 +00:00
|
|
|
setTimeout(resolve, element);
|
|
|
|
});
|
2013-08-06 10:00:37 +00:00
|
|
|
}
|
2015-01-03 01:39:27 +00:00
|
|
|
|
|
|
|
return p.then(function () {
|
|
|
|
// test that array order is as expected
|
|
|
|
console.log(element, 'is element', i, 'of', arr.length);
|
|
|
|
});
|
2015-01-03 01:08:02 +00:00
|
|
|
}, context).then(function () {
|
|
|
|
// test that thisness carried
|
|
|
|
console.log('context', context);
|
2013-08-06 10:00:37 +00:00
|
|
|
}).then(function () {
|
|
|
|
// test then chaining
|
|
|
|
console.log("now wasn't that nice?");
|
2013-08-06 09:51:22 +00:00
|
|
|
});
|
|
|
|
}());
|