angular-cn/packages/zone.js/test/extra
JiaLiPassion b44f7b5e16 fix(zone.js): fix 2 bluebird test cases for each/mapSeries (#36295)
`Bluebird.each` and `Bluebird.mapSeries` will accept a callback with `value` parameter,
the `value` should be the item in the array, not array itself.

For example:
```
const arr = [1, 2];
Bluebird.each(arr, function(value, idx) {
  console.log(`value: ${value}, idx: ${idx}`);
})
```

the output will be
```
value: 1, idx: 0
value: 2, idx: 1
```

This PR fix the test cases for `each` and `mapSeries` APIs.

PR Close #36295
2020-03-31 10:59:56 -07:00
..
bluebird.spec.ts fix(zone.js): fix 2 bluebird test cases for each/mapSeries (#36295) 2020-03-31 10:59:56 -07:00
cordova.spec.ts build: move zone.js to angular repo (#30962) 2019-06-20 11:27:39 -07:00
electron.js fix(zone.js): zone-mix should import correct browser module (#31628) 2019-07-24 14:33:07 -07:00