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
6b39501
... +1 ...
1d62acf
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
21 | 21 | ||
22 | 22 | // Node. |
|
23 | 23 | if (own.call(value, 'position') || own.call(value, 'type')) { |
|
24 | - | // @ts-ignore looks like a node. |
|
24 | + | // @ts-expect-error looks like a node. |
|
25 | 25 | return position(value.position) |
|
26 | 26 | } |
|
27 | 27 | ||
28 | 28 | // Position. |
|
29 | 29 | if (own.call(value, 'start') || own.call(value, 'end')) { |
|
30 | - | // @ts-ignore looks like a position. |
|
30 | + | // @ts-expect-error looks like a position. |
|
31 | 31 | return position(value) |
|
32 | 32 | } |
|
33 | 33 | ||
34 | 34 | // Point. |
|
35 | 35 | if (own.call(value, 'line') || own.call(value, 'column')) { |
|
36 | - | // @ts-ignore looks like a point. |
|
36 | + | // @ts-expect-error looks like a point. |
|
37 | 37 | return point(value) |
|
38 | 38 | } |
|
39 | 39 |
Files | Coverage |
---|---|
index.js | 100.00% |
Project Totals (1 files) | 100.00% |
1d62acf
9e7e52e
6b39501