No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
b2dccbb
... +1 ...
12649d8
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
244 | 244 | }).assets || []; |
|
245 | 245 | ||
246 | 246 | const relatedAssets = assets |
|
247 | - | .map((p) => { |
|
248 | - | return ((p.related && Array.isArray(p.related) && p.related) || |
|
247 | + | .map((asset) => { |
|
248 | + | return ((asset.related && |
|
249 | + | Array.isArray(asset.related) && |
|
250 | + | asset.related) || |
|
249 | 251 | []) as AssetInfo[]; |
|
250 | 252 | }) |
|
251 | - | .reduce((prev, cur) => { |
|
252 | - | return [...prev, ...cur]; |
|
253 | + | .reduce((previousAssets, currentAssets) => { |
|
254 | + | return [...previousAssets, ...currentAssets]; |
|
253 | 255 | }, []); |
|
254 | 256 | ||
255 | 257 | const allAssets = [...assets, ...relatedAssets]; |
Files | Coverage |
---|---|
src/clean-webpack-plugin.ts | 98.80% |
Project Totals (1 files) | 98.80% |
12649d8
4f7317a
b2dccbb