(msg)
| 621 | } |
| 622 | |
| 623 | function skip(msg) { |
| 624 | printSkipMessage(msg); |
| 625 | // In known_issues test, skipping should produce a non-zero exit code. |
| 626 | process.exit(require.main?.filename.startsWith(path.resolve(__dirname, '../known_issues/')) ? 1 : 0); |
| 627 | } |
| 628 | |
| 629 | // Returns true if the exit code "exitCode" and/or signal name "signal" |
| 630 | // represent the exit code and/or signal name of a node process that aborted, |
no test coverage detected
searching dependent graphs…