()
| 14 | require('source-map-support/register'); |
| 15 | |
| 16 | function marker() { |
| 17 | try { |
| 18 | throw new Error('Test Marker'); |
| 19 | } catch (E) { |
| 20 | if (is.error(E)) { |
| 21 | return E.stack?.split('\n').filter(each => each.includes('.ts') && each.includes('<anonymous>')).join('\n'); |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | const fails: [ string | undefined, string, string?][] = [ |
| 27 | /** command substitution not supported */ |
no test coverage detected