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
fc8c4d3
... +1 ...
81565e6
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
25 | 25 | /** @type {ConstructRecord} */ |
|
26 | 26 | const flow = {} |
|
27 | 27 | let index = -1 |
|
28 | - | /** @type {Matter} */ |
|
29 | - | let matter |
|
30 | - | /** @type {number} */ |
|
31 | - | let code |
|
32 | 28 | ||
33 | 29 | while (++index < settings.length) { |
|
34 | - | matter = settings[index] |
|
35 | - | code = fence(matter, 'open').charCodeAt(0) |
|
30 | + | const matter = settings[index] |
|
31 | + | const code = fence(matter, 'open').charCodeAt(0) |
|
36 | 32 | if (code in flow) { |
|
37 | 33 | // @ts-expect-error it clearly does exist. |
|
38 | 34 | flow[code].push(parse(matter)) |
Files | Coverage |
---|---|
dev | 100.00% |
Project Totals (4 files) | 100.00% |
81565e6
731613e
fc8c4d3