(skippedBySequenceOrTurn: number)
| 84 | * gates always pass `0` and therefore see the generic message. |
| 85 | */ |
| 86 | export function strictNoMatchMessage(skippedBySequenceOrTurn: number): string { |
| 87 | if (skippedBySequenceOrTurn > 0) { |
| 88 | return `Strict mode: ${skippedBySequenceOrTurn} candidate fixture(s) skipped by sequence/turn state`; |
| 89 | } |
| 90 | return "Strict mode: no fixture matched"; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Build the strict-mode error LOG line, mirroring {@link strictNoMatchMessage}'s |
no outgoing calls
no test coverage detected
searching dependent graphs…