Skip to content

Commit 99bc952

Browse files
Change 'add on' to 'premium solution' for UI Cov & a11y products (#6162)
1 parent d15652c commit 99bc952

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

docs/app/faq.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ source (MIT license) application. This is always free to use.
2020
variety of billing plans (including a free, open source plan) for when you want
2121
to record your test runs in CI.
2222

23-
Additionally, we have add-ons like [UI Coverage](/ui-coverage/get-started/introduction) and [Cypress Accessibility](/accessibility/get-started/introduction) which have separate pricing.
23+
Additionally, we have premium solutions like [UI Coverage](/ui-coverage/get-started/introduction) and [Cypress Accessibility](/accessibility/get-started/introduction) which have separate pricing.
2424

2525
Please see our [Pricing Page](https://www.cypress.io/pricing) for more details.
2626

docs/app/get-started/why-cypress.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ of your test suite and the quality of your application.
4444
[open source](https://github.com/cypress-io/cypress),
4545
locally installed app for writing and running tests.
4646
- [Cypress Cloud](/cloud/get-started/introduction), a paid service for recording tests, surfacing test results, and providing test analytics.
47-
- [UI Coverage](/ui-coverage/get-started/introduction), a paid add-on providing a visual overview of test coverage across every page and component of your app, offering clear insights into uncovered areas that everyone can understand.
48-
- [Cypress Accessibility](/accessibility/get-started/introduction), a paid add-on providing accessibility checks, which helps detect barriers for people with disabilities using your application.
47+
- [UI Coverage](/ui-coverage/get-started/introduction), a premium solution providing a visual overview of test coverage across every page and component of your app, offering clear insights into uncovered areas that everyone can understand.
48+
- [Cypress Accessibility](/accessibility/get-started/introduction), a premium solution providing accessibility checks, which helps detect barriers for people with disabilities using your application.
4949

5050
Cypress is a robust solution that can improve the quality of your application.
5151

docs/app/guides/accessibility-testing.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Here are the main ways to account for accessibility when testing with Cypress:
3434
- [In-test plugins](#In-test-plugins)
3535
- [Cypress Accessibility](#Cypress-Accessibility)
3636

37-
<AccessibilityAddon />
37+
<AccessibilityPremiumNote />
3838

3939
### Explicit, application-specific tests
4040

@@ -81,7 +81,7 @@ In-test accessibility checks are the only kind available in typical testing scen
8181

8282
To learn more, you can read our [dedicated docs](/accessibility/get-started/introduction), or review a [public live example of an automatically-generated accessibility report](https://cloud.cypress.io/projects/7s5okt/runs/6520/accessibility?tab=views&columnHeading=Views&direction=ascending&rulesColumnHeading=Rules&rulesDirection=ascending&impact=critical%2Cserious%2Cmoderate%2Cminor&ruleset=wcag21a%2Cwcag21aa%2Cbest-practice&status=fail%2Cincomplete) in our Cypress Realworld App demo project.
8383

84-
<AccessibilityAddon />
84+
<AccessibilityPremiumNote />
8585

8686
<DocsImage
8787
src="/img/accessibility/cy-a11y-detail.png"

docs/partials/_accessibility-addon.mdx

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
:::tip
2+
3+
**Cypress Accessibility** is a paid premium solution. [Schedule a demo](<https://www.cypress.io/accessibility?utm_medium=premium-solution-tip&utm_source=docs.cypress.io&utm_content=Schedule a demo>) today and see how easy it is to enhance your accessibility testing while speeding up your development process.
4+
5+
:::

docs/partials/_ui-coverage-addon.mdx

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
:::tip
2+
3+
**UI Coverage** is a paid premium solution. [Schedule a demo](<https://www.cypress.io/ui-coverage?utm_medium=premium-solution-tip&utm_source=docs.cypress.io&utm_content=Schedule a demo>) today and see how easy it is to enhance your testing while speeding up your development process.
4+
5+
:::

src/components/product-heading/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const ProductHeading: React.FC<ProductHeadingProps> = ({
1919
const iconName = product === 'ui-coverage' ? 'technology-ui-coverage' : product === 'accessibility' ? 'cypress-accessibility-outline' : 'technology-cypress'
2020
const linkPath = product === 'cloud' ? 'pricing' : product
2121

22-
let badgeContent = product === 'cloud' ? 'Free Trial' : '+ Add-on'
22+
let badgeContent = product === 'cloud' ? 'Free Trial' : 'Premium Solution'
2323

2424
if (product === 'cloud' && plan) {
2525
badgeContent = plan === 'team' ? 'Team Plan' : plan === 'business' ? 'Business Plan' : 'Enterprise Plan'

src/theme/MDXComponents.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Import the original mapper
22
import MDXComponents from "@theme-original/MDXComponents";
33
import AnatomyOfAnError from "@site/docs/partials/_anatomy-of-an-error.mdx";
4-
import AccessibilityAddon from "@site/docs/partials/_accessibility-addon.mdx";
4+
import AccessibilityPremiumNote from "@site/docs/partials/_accessibility-premium-note.mdx";
55
import AutoCancellationBenefits from "@site/docs/partials/_auto-cancellation-benefits.mdx";
66
import Badge from "@site/src/components/badge";
77
import Btn from "@site/src/components/button";
@@ -41,7 +41,7 @@ import Logo from "@site/src/components/logo";
4141
import CloudFreePlan from "@site/docs/partials/_cloud_free_plan.mdx";
4242
import CiProviderCloudSteps from "@site/docs/partials/_ci_provider_cloud_steps.mdx";
4343
import UrlAllowList from "@site/docs/partials/_url_allowlist.mdx";
44-
import UICovAddon from "@site/docs/partials/_ui-coverage-addon.mdx";
44+
import UICovPremiumNote from "@site/docs/partials/_ui-coverage-premium-note.mdx";
4545

4646
// Font Awesome
4747
import { library } from '@fortawesome/fontawesome-svg-core'
@@ -161,7 +161,7 @@ export default {
161161
// Re-use the default mapping
162162
...MDXComponents,
163163
AnatomyOfAnError,
164-
AccessibilityAddon,
164+
AccessibilityPremiumNote,
165165
AutoCancellationBenefits,
166166
Badge,
167167
Btn,
@@ -201,5 +201,5 @@ export default {
201201
CloudFreePlan,
202202
CiProviderCloudSteps,
203203
UrlAllowList,
204-
UICovAddon,
204+
UICovPremiumNote,
205205
}

0 commit comments

Comments
 (0)