Skip to content

Commit

Permalink
fix > chars
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-shehane committed Oct 25, 2024
1 parent 1bf0cb6 commit a10b337
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/accessibility/results-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ In your CI workflow that runs your Cypress tests,

:::info

If you record multiple runs in a single CI build, you must record these runs using the `--tag` parameter and then call `getAccessibilityResults`with the `runTags` argument for each run. 
If you record multiple runs in a single CI build, you must record these runs using the `--tag` parameter and then call `getAccessibilityResults`with the `runTags` argument for each run.

This is necessary to identify each unique run and return a corresponding set of results. The tags are how each run is uniquely identified.

Expand Down
6 changes: 3 additions & 3 deletions docs/ui-coverage/results-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ getUICoverageResults({
console.log(`See full report at ${uiCoverageReportUrl}.`)

// verify project coverage
if (summary.coverage < 80) {
if (summary.coverage < 80) {
throw new Error(`Project coverage is ${summary.coverage}, which does not meet the minimum coverage of 80%.`)
}

Expand All @@ -85,7 +85,7 @@ getUICoverageResults({
const isCriticalView = criticalViews.some((rx) => rx.test(displayName))
if (!isCriticalView) return

if (coverage &#x3C; 95) {
if (coverage < 95) {
throw new Error(`The critical view ${displayName} has the coverage of ${coverage}, which does not meet the critical view coverage of 95%. See report at ${uiCoverageReportUrl}.`)
}
})
Expand Down Expand Up @@ -185,7 +185,7 @@ In your CI workflow that runs your Cypress tests,

:::info

If you record multiple runs in a single CI build, you must record these runs using the `--tag` parameter and then call `getUICoverageResults`with the `runTags` argument for each run.&#x20;
If you record multiple runs in a single CI build, you must record these runs using the `--tag` parameter and then call `getUICoverageResults`with the `runTags` argument for each run.

This is necessary to identify each unique run and return a corresponding set of results. The tags are how each run is uniquely identified.

Expand Down

0 comments on commit a10b337

Please sign in to comment.