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
6fd2f73
... +0 ...
fa717da
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
257 | 257 | /** |
|
258 | 258 | * Fetch Webpack's output asset files |
|
259 | 259 | */ |
|
260 | - | const assets = stats.toJson().assets || []; |
|
260 | + | const assets = |
|
261 | + | stats.toJson( |
|
262 | + | { |
|
263 | + | assets: true, |
|
264 | + | }, |
|
265 | + | true, |
|
266 | + | ).assets || []; |
|
261 | 267 | const assetList = assets.map((asset: { name: string }) => { |
|
262 | 268 | return asset.name; |
|
263 | 269 | }); |
Files | Coverage |
---|---|
src/clean-webpack-plugin.ts | 98.86% |
Project Totals (1 files) | 98.86% |
fa717da
6fd2f73