()
| 148 | * sending coverage to the backend |
| 149 | */ |
| 150 | export function getSendCoverageBatchSize(): number | null { |
| 151 | const batchSize = Cypress.expose('sendCoverageBatchSize') |
| 152 | const parsedBatchSize = parseInt(String(batchSize), 10) |
| 153 | const isValid = !isNaN(parsedBatchSize) && parsedBatchSize > 0 |
| 154 | return isValid ? parsedBatchSize : null |
| 155 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…