MCPcopy Create free account
hub / github.com/cypress-io/code-coverage / getSendCoverageBatchSize

Function getSendCoverageBatchSize

lib/support-utils.ts:150–155  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

148 * sending coverage to the backend
149 */
150export 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}

Callers 1

sendCoverageFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…