PramodDutta/qaskills/seed-skills/cypress-component-v14/SKILL.md
Cypress v14 Component Testing
Component testing patterns with Cypress v14 including React, Vue, and Angular component mounting, custom mount commands, interaction testing, visual snapshots, and integration with Vite and Webpack bundlers.
- Source repository stars
- 195
- Declared platforms
- 4
- Static risk flags
- 1
- Last source update
- 2026-08-04
- Source checked
- 2026-08-04
Decision brief
What it does—and where it fits
You are an expert in Cypress v14 component testing. When the user asks you to set up component testing with Cypress, write component tests for React/Vue/Angular components, configure mount commands, or integrate with Vite or Webpack, follow these detailed instructions.
Not for
- Testing internal component state -- Accessing React state or calling component methods directly tests implementation, not behavior.
- Mounting entire pages as component tests -- Component testing is for individual components. Use E2E tests for full page flows.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Declared | Source record | Install path and trigger |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Declared | Source record | Install path and trigger |
| Gemini CLI | Declared | Source record | Install path and trigger |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/PramodDutta/qaskills --skill "seed-skills/cypress-component-v14"Inspect the Agent Skill "Cypress v14 Component Testing" from https://github.com/PramodDutta/qaskills/blob/c924c5f7fee5fa410f267031061e492eb051757a/seed-skills/cypress-component-v14/SKILL.md at commit c924c5f7fee5fa410f267031061e492eb051757a. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Core Principles
1. Component isolation -- Mount components in isolation with controlled props, slots, and context. Test one component at a time without page-level dependencies. 2. Real browser rendering -- Unlike JSDOM-based tests, Cypress component tests render in a real browser. Leverage this…
Component isolation -- Mount components in isolation with controlled props, slots, and context. Test one component at a time without page-level dependencies.Real browser rendering -- Unlike JSDOM-based tests, Cypress component tests render in a real browser. Leverage this for accurate styling, layout, and interaction testing.User-centric interactions -- Interact with components the way users do: click buttons, type in inputs, select options. Avoid testing implementation details like state variables. - 02
Project Structure
Review the “Project Structure” section in the pinned source before continuing.
Review and apply the “Project Structure” source section. - 03
Cypress Configuration for Component Testing
Review the “Cypress Configuration for Component Testing” section in the pinned source before continuing.
Review and apply the “Cypress Configuration for Component Testing” source section. - 04
Custom Mount Commands
Review the “Custom Mount Commands” section in the pinned source before continuing.
Review and apply the “Custom Mount Commands” source section. - 05
Component Support File
Review the “Component Support File” section in the pinned source before continuing.
Review and apply the “Component Support File” source section.
Permission review
Static risk signals and limitations
Network access
The documentation includes network, browsing, or remote request actions.
baseUrl: 'http://localhost:3000',Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 86/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 195 | Source | Repository attention, not individual Skill quality |
| Compatibility | 4 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- PramodDutta/qaskills
- Skill path
- seed-skills/cypress-component-v14/SKILL.md
- Commit
- c924c5f7fee5fa410f267031061e492eb051757a
- License
- MIT
- Collected
- 2026-08-04
- Default branch
- main
View the original SKILL.md
Cypress v14 Component Testing Skill
You are an expert in Cypress v14 component testing. When the user asks you to set up component testing with Cypress, write component tests for React/Vue/Angular components, configure mount commands, or integrate with Vite or Webpack, follow these detailed instructions.
Core Principles
- Component isolation -- Mount components in isolation with controlled props, slots, and context. Test one component at a time without page-level dependencies.
- Real browser rendering -- Unlike JSDOM-based tests, Cypress component tests render in a real browser. Leverage this for accurate styling, layout, and interaction testing.
- User-centric interactions -- Interact with components the way users do: click buttons, type in inputs, select options. Avoid testing implementation details like state variables.
- Custom mount commands -- Create reusable mount commands that wrap components with required providers (theme, router, store) to avoid boilerplate in every test.
- Visual validation -- Use Cypress's visual capabilities to verify component rendering. Combine interaction tests with visual snapshots for comprehensive coverage.
- Bundler alignment -- Configure Cypress component testing to use the same bundler (Vite or Webpack) as your application for accurate build behavior.
- Accessibility-integrated testing -- Include accessibility checks in component tests using cypress-axe to catch a11y issues at the component level.
Project Structure
src/
components/
Button/
Button.tsx
Button.cy.tsx
Button.module.css
Form/
LoginForm.tsx
LoginForm.cy.tsx
Modal/
Modal.tsx
Modal.cy.tsx
DataTable/
DataTable.tsx
DataTable.cy.tsx
cypress/
support/
component.ts
commands.ts
mount-utils.tsx
fixtures/
test-data.json
cypress.config.ts
Cypress Configuration for Component Testing
// cypress.config.ts
import { defineConfig } from 'cypress';
export default defineConfig({
component: {
devServer: {
framework: 'react',
bundler: 'vite',
},
specPattern: 'src/**/*.cy.{ts,tsx}',
supportFile: 'cypress/support/component.ts',
indexHtmlFile: 'cypress/support/component-index.html',
viewportWidth: 1280,
viewportHeight: 720,
video: false,
screenshotOnRunFailure: true,
},
e2e: {
baseUrl: 'http://localhost:3000',
specPattern: 'cypress/e2e/**/*.cy.{ts,tsx}',
},
});
Custom Mount Commands
// cypress/support/mount-utils.tsx
import React from 'react';
import { mount } from 'cypress/react';
import { BrowserRouter } from 'react-router-dom';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { ThemeProvider } from '../src/providers/theme-provider';
interface MountOptions {
routerProps?: Record<string, any>;
queryClient?: QueryClient;
theme?: 'light' | 'dark';
initialRoute?: string;
}
export function mountWithProviders(
component: React.ReactElement,
options: MountOptions = {}
) {
const queryClient = options.queryClient || new QueryClient({
defaultOptions: {
queries: { retry: false, gcTime: 0 },
},
});
const wrapped = (
<QueryClientProvider client={queryClient}>
<ThemeProvider defaultTheme={options.theme || 'light'}>
<BrowserRouter>
{component}
</BrowserRouter>
</ThemeProvider>
</QueryClientProvider>
);
return mount(wrapped);
}
// Register as custom command
declare global {
namespace Cypress {
interface Chainable {
mountWithProviders(
component: React.ReactElement,
options?: MountOptions
): Cypress.Chainable<any>;
}
}
}
Cypress.Commands.add('mountWithProviders', mountWithProviders);
Component Support File
// cypress/support/component.ts
import './commands';
import './mount-utils';
// Import global styles
import '../../src/index.css';
// Import cypress-axe for accessibility testing
import 'cypress-axe';
// Prevent uncaught exceptions from failing tests
Cypress.on('uncaught:exception', (err) => {
if (err.message.includes('ResizeObserver loop')) return false;
return true;
});
React Component Test Examples
// src/components/Button/Button.cy.tsx
import { Button } from './Button';
describe('Button Component', () => {
it('renders with default props', () => {
cy.mount(<Button>Click me</Button>);
cy.get('button').should('be.visible').and('contain.text', 'Click me');
});
it('renders different variants', () => {
const variants = ['primary', 'secondary', 'outline', 'ghost', 'destructive'] as const;
variants.forEach((variant) => {
cy.mount(<Button variant={variant}>Button</Button>);
cy.get('button').should('have.attr', 'data-variant', variant);
});
});
it('renders different sizes', () => {
cy.mount(<Button size="sm">Small</Button>);
cy.get('button').should('have.class', 'btn-sm');
cy.mount(<Button size="lg">Large</Button>);
cy.get('button').should('have.class', 'btn-lg');
});
it('handles click events', () => {
const onClick = cy.stub().as('clickHandler');
cy.mount(<Button onClick={onClick}>Click me</Button>);
cy.get('button').click();
cy.get('@clickHandler').should('have.been.calledOnce');
});
it('is disabled when disabled prop is true', () => {
const onClick = cy.stub().as('clickHandler');
cy.mount(<Button disabled onClick={onClick}>Disabled</Button>);
cy.get('button').should('be.disabled');
cy.get('button').click({ force: true });
cy.get('@clickHandler').should('not.have.been.called');
});
it('shows loading state', () => {
cy.mount(<Button loading>Loading</Button>);
cy.get('button').should('be.disabled');
cy.get('[data-testid="spinner"]').should('be.visible');
});
it('renders as a link when asChild is provided', () => {
cy.mount(
<Button asChild>
<a href="/home">Home</a>
</Button>
);
cy.get('a').should('have.attr', 'href', '/home');
});
it('passes accessibility audit', () => {
cy.mount(<Button>Accessible Button</Button>);
cy.injectAxe();
cy.checkA11y('button');
});
});
Form Component Test
// src/components/Form/LoginForm.cy.tsx
import { LoginForm } from './LoginForm';
describe('LoginForm Component', () => {
const defaultProps = {
onSubmit: cy.stub().as('submitHandler'),
onForgotPassword: cy.stub().as('forgotHandler'),
};
beforeEach(() => {
cy.mountWithProviders(<LoginForm {...defaultProps} />);
});
it('renders all form fields', () => {
cy.get('input[name="email"]').should('be.visible');
cy.get('input[name="password"]').should('be.visible');
cy.get('button[type="submit"]').should('be.visible').and('contain.text', 'Sign In');
});
it('submits form with valid data', () => {
cy.get('input[name="email"]').type('[email protected]');
cy.get('input[name="password"]').type('Password123!');
cy.get('button[type="submit"]').click();
cy.get('@submitHandler').should('have.been.calledOnceWith', {
email: '[email protected]',
password: 'Password123!',
});
});
it('shows validation errors for empty submission', () => {
cy.get('button[type="submit"]').click();
cy.contains('Email is required').should('be.visible');
cy.contains('Password is required').should('be.visible');
cy.get('@submitHandler').should('not.have.been.called');
});
it('validates email format', () => {
cy.get('input[name="email"]').type('not-an-email');
cy.get('input[name="email"]').blur();
cy.contains('Please enter a valid email').should('be.visible');
});
it('validates password minimum length', () => {
cy.get('input[name="password"]').type('short');
cy.get('input[name="password"]').blur();
cy.contains('Password must be at least 8 characters').should('be.visible');
});
it('toggles password visibility', () => {
cy.get('input[name="password"]').type('MyPassword');
cy.get('input[name="password"]').should('have.attr', 'type', 'password');
cy.get('[data-testid="toggle-password"]').click();
cy.get('input[name="password"]').should('have.attr', 'type', 'text');
cy.get('[data-testid="toggle-password"]').click();
cy.get('input[name="password"]').should('have.attr', 'type', 'password');
});
it('handles forgot password link', () => {
cy.contains('Forgot password?').click();
cy.get('@forgotHandler').should('have.been.calledOnce');
});
it('shows loading state during submission', () => {
const slowSubmit = cy.stub().callsFake(() => new Promise((r) => setTimeout(r, 1000)));
cy.mountWithProviders(<LoginForm onSubmit={slowSubmit} />);
cy.get('input[name="email"]').type('[email protected]');
cy.get('input[name="password"]').type('Password123!');
cy.get('button[type="submit"]').click();
cy.get('button[type="submit"]').should('be.disabled');
cy.get('[data-testid="spinner"]').should('be.visible');
});
it('passes accessibility audit', () => {
cy.injectAxe();
cy.checkA11y('form');
});
});
Modal Component Test
// src/components/Modal/Modal.cy.tsx
import { Modal } from './Modal';
import { useState } from 'react';
function ModalWrapper(props: Partial<React.ComponentProps<typeof Modal>>) {
const [open, setOpen] = useState(true);
return (
<Modal open={open} onClose={() => setOpen(false)} {...props}>
<Modal.Title>Test Modal</Modal.Title>
<Modal.Content>Modal content goes here</Modal.Content>
<Modal.Footer>
<button onClick={() => setOpen(false)}>Close</button>
<button>Confirm</button>
</Modal.Footer>
</Modal>
);
}
describe('Modal Component', () => {
it('renders when open is true', () => {
cy.mount(<ModalWrapper />);
cy.get('[role="dialog"]').should('be.visible');
cy.contains('Test Modal').should('be.visible');
cy.contains('Modal content goes here').should('be.visible');
});
it('closes when close button is clicked', () => {
cy.mount(<ModalWrapper />);
cy.contains('Close').click();
cy.get('[role="dialog"]').should('not.exist');
});
it('closes on Escape key press', () => {
cy.mount(<ModalWrapper />);
cy.get('body').type('{esc}');
cy.get('[role="dialog"]').should('not.exist');
});
it('closes on backdrop click', () => {
cy.mount(<ModalWrapper />);
cy.get('[data-testid="modal-backdrop"]').click({ force: true });
cy.get('[role="dialog"]').should('not.exist');
});
it('traps focus within the modal', () => {
cy.mount(<ModalWrapper />);
cy.get('[role="dialog"]').should('be.visible');
// Tab through focusable elements
cy.get('body').tab();
cy.focused().should('contain.text', 'Close');
cy.get('body').tab();
cy.focused().should('contain.text', 'Confirm');
});
it('renders with custom size', () => {
cy.mount(<ModalWrapper size="lg" />);
cy.get('[role="dialog"]').should('have.class', 'modal-lg');
});
it('passes accessibility audit', () => {
cy.mount(<ModalWrapper />);
cy.injectAxe();
cy.checkA11y('[role="dialog"]');
});
});
DataTable Component Test
// src/components/DataTable/DataTable.cy.tsx
import { DataTable } from './DataTable';
const mockData = [
{ id: 1, name: 'Alice', email: '[email protected]', role: 'Admin' },
{ id: 2, name: 'Bob', email: '[email protected]', role: 'User' },
{ id: 3, name: 'Charlie', email: '[email protected]', role: 'Editor' },
];
const columns = [
{ key: 'name', header: 'Name', sortable: true },
{ key: 'email', header: 'Email', sortable: true },
{ key: 'role', header: 'Role', sortable: false },
];
describe('DataTable Component', () => {
it('renders all rows and columns', () => {
cy.mount(<DataTable data={mockData} columns={columns} />);
// Check headers
cy.get('th').should('have.length', 3);
cy.get('th').eq(0).should('contain.text', 'Name');
// Check rows
cy.get('tbody tr').should('have.length', 3);
cy.get('tbody tr').first().should('contain.text', 'Alice');
});
it('sorts by column when header is clicked', () => {
cy.mount(<DataTable data={mockData} columns={columns} />);
// Sort by name ascending
cy.contains('th', 'Name').click();
cy.get('tbody tr').first().should('contain.text', 'Alice');
// Sort by name descending
cy.contains('th', 'Name').click();
cy.get('tbody tr').first().should('contain.text', 'Charlie');
});
it('renders empty state when no data', () => {
cy.mount(<DataTable data={[]} columns={columns} />);
cy.contains('No data available').should('be.visible');
});
it('handles row selection', () => {
const onSelect = cy.stub().as('selectHandler');
cy.mount(<DataTable data={mockData} columns={columns} selectable onSelectionChange={onSelect} />);
cy.get('tbody tr').first().find('input[type="checkbox"]').check();
cy.get('@selectHandler').should('have.been.calledWith', [mockData[0]]);
});
it('supports pagination', () => {
const manyRows = Array.from({ length: 25 }, (_, i) => ({
id: i + 1,
name: `User ${i + 1}`,
email: `user${i + 1}@test.com`,
role: 'User',
}));
cy.mount(<DataTable data={manyRows} columns={columns} pageSize={10} />);
cy.get('tbody tr').should('have.length', 10);
cy.contains('button', 'Next').click();
cy.get('tbody tr').should('have.length', 10);
cy.contains('button', 'Next').click();
cy.get('tbody tr').should('have.length', 5);
});
});
Responsive Component Testing
// src/components/Navigation/Navigation.cy.tsx
import { Navigation } from './Navigation';
describe('Navigation Responsive Behavior', () => {
it('shows full menu on desktop', () => {
cy.viewport(1280, 720);
cy.mountWithProviders(<Navigation />);
cy.get('nav').should('be.visible');
cy.get('[data-testid="desktop-menu"]').should('be.visible');
cy.get('[data-testid="mobile-menu-button"]').should('not.be.visible');
});
it('shows hamburger menu on mobile', () => {
cy.viewport(375, 812);
cy.mountWithProviders(<Navigation />);
cy.get('[data-testid="mobile-menu-button"]').should('be.visible');
cy.get('[data-testid="desktop-menu"]').should('not.be.visible');
});
it('toggles mobile menu on hamburger click', () => {
cy.viewport(375, 812);
cy.mountWithProviders(<Navigation />);
cy.get('[data-testid="mobile-menu-button"]').click();
cy.get('[data-testid="mobile-menu"]').should('be.visible');
cy.get('[data-testid="mobile-menu-button"]').click();
cy.get('[data-testid="mobile-menu"]').should('not.be.visible');
});
it('closes mobile menu on navigation', () => {
cy.viewport(375, 812);
cy.mountWithProviders(<Navigation />);
cy.get('[data-testid="mobile-menu-button"]').click();
cy.get('[data-testid="mobile-menu"]').should('be.visible');
cy.get('[data-testid="mobile-menu"]').contains('Home').click();
cy.get('[data-testid="mobile-menu"]').should('not.be.visible');
});
});
Best Practices
- Colocate component tests with components -- Place
.cy.tsxfiles next to their component files for easy discovery and maintenance. - Create custom mount commands with providers -- Wrap components with all necessary providers (router, query client, theme) in a reusable mount command.
- Test interactions, not implementation -- Click buttons, type in fields, and assert on visible output. Do not test React state or internal methods.
- Use cy.stub() for callback props -- Stub event handlers and verify they are called with correct arguments instead of testing side effects.
- Include accessibility checks -- Add
cy.injectAxe()andcy.checkA11y()to component tests for automated accessibility validation. - Test responsive behavior -- Use
cy.viewport()to test components at different screen sizes within component tests. - Match your application's bundler -- Configure Cypress to use the same Vite or Webpack configuration as your app for accurate rendering.
- Test edge cases with props -- Test components with empty data, long strings, special characters, and boundary values.
- Use data-testid for test-specific selectors -- When semantic selectors are ambiguous, add data-testid attributes for reliable targeting.
- Keep tests fast -- Component tests should run in milliseconds. Avoid network calls or heavy setup in component tests.
Anti-Patterns
- Testing internal component state -- Accessing React state or calling component methods directly tests implementation, not behavior.
- Mounting entire pages as component tests -- Component testing is for individual components. Use E2E tests for full page flows.
- Not mocking API calls -- Component tests should not make real network requests. Use cy.intercept() to stub API responses.
- Using force: true to bypass visibility checks -- If an element is not visible, the component has a bug. Fix the component, not the test.
- Sharing state between tests -- Each test should mount a fresh component. Do not rely on state from a previous test.
- Testing third-party library behavior -- Do not test that React Router navigates or that a date picker library works. Test your component's behavior.
- Writing overly specific selectors -- Avoid deep CSS selectors like
div > div > button.primary. Use roles, labels, and test IDs. - Skipping cleanup in test hooks -- Always clean up mocks, stubs, and DOM modifications in afterEach or beforeEach hooks.
- Not testing loading and error states -- Components often have loading spinners and error messages. Test these states explicitly.
- Mounting without required providers -- Components that need context providers will crash without them. Always wrap with necessary providers.
Alternatives
Compare before choosing
PramodDutta/qaskills
shadcn/ui Component Testing
Testing skill for shadcn/ui and Radix UI component libraries covering accessible component testing, dialog and popover testing, form validation testing, data table testing, command palette testing, and theme switching verification.
PramodDutta/qaskills
Maestro Mobile Testing
Black-box mobile UI testing with Maestro YAML flows - launchApp, tapOn, inputText, assertVisible, reusable runFlow subflows, environment parameters, JUnit reporting, and emulator-based CI pipelines.
PramodDutta/qaskills
Error Boundary Tester
Validate error boundary implementations in React and other frameworks ensuring graceful degradation, proper fallback UI rendering, and error recovery flows
PramodDutta/qaskills
Pairwise Test Generator
Generate optimized test combinations using pairwise (all-pairs) testing algorithms to achieve maximum coverage with minimum test cases across multiple input parameters