(msg)
| 404 | ); |
| 405 | } |
| 406 | function skip(msg) { |
| 407 | state.skip++; |
| 408 | setCounts(state.pass, state.fail, state.skip); |
| 409 | logLine(`⏭️ ${escapeHtml(msg)}`, "skip"); |
| 410 | } |
| 411 | |
| 412 | function escapeHtml(s) { |
| 413 | return String(s).replace( |
nothing calls this directly
no test coverage detected