( rows: readonly string[], expectedSubstring: string, )
| 86 | } |
| 87 | |
| 88 | export function rowsContainSubstring( |
| 89 | rows: readonly string[], |
| 90 | expectedSubstring: string, |
| 91 | ): boolean { |
| 92 | return rows.some(row => row.includes(expectedSubstring)) |
| 93 | } |
| 94 | |
| 95 | export function expectRowsNotToContainSubstring( |
| 96 | rows: readonly string[], |
no outgoing calls