cypress

Solid

Cypress testing patterns, custom commands, component testing, and CI integration.

Testing & QA 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
55
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Cypress Skill Expert assistance for E2E and component testing with Cypress. ## Capabilities - Write E2E test scenarios - Create custom commands - Implement component testing - Configure CI pipelines - Handle authentication ## Test Patterns ```typescript describe('User Authentication', () => { beforeEach(() => { cy.visit('/login'); }); it('should login successfully', () => { cy.get('[data-testid="email"]').type('user@example.com'); cy.get('[data-testid="password"]').type('password123'); cy.get('[data-testid="submit"]').click(); cy.url().should('include', '/dashboard'); cy.contains('Welcome').should('be.visible'); }); }); ``` ## Custom Commands ```typescript Cypress.Commands.add('login', (email, password) => { cy.session([email, password], () => { cy.visit('/login'); cy.get('[data-testid="email"]').type(email); cy.get('[data-testid="password"]').type(password); cy.get('[data-testid="submit"]').click(); cy.url().should('include', '/dashboard'); }); }); ``` ## Target Processes - e2e-testing - component-testing - ci-cd-setup

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Testing & QA Listed

cypress-e2e-testing

End-to-end testing skill using Cypress for web applications, covering custom commands, network intercepts, fixtures, cy.session, and component testing patterns.

3 Updated today
KaliBellion
Testing & QA Solid

cypress-e2e-testing

Expert Cypress testing framework integration for browser-based end-to-end testing

1,160 Updated today
a5c-ai
Testing & QA Solid

cypress-testing

Use this skill when writing Cypress e2e or component tests, creating custom commands, intercepting network requests, or integrating Cypress in CI. Triggers on Cypress, cy.get, cy.intercept, cypress component testing, custom commands, fixtures, cypress-cucumber, and any task requiring Cypress test automation.

167 Updated today
AbsolutelySkilled
Testing & QA Listed

cypress-testing

Use this skill when writing Cypress e2e or component tests, creating custom commands, intercepting network requests, or integrating Cypress in CI. Triggers on Cypress, cy.get, cy.intercept, cypress component testing, custom commands, fixtures, cypress-cucumber, and any task requiring Cypress test automation.

3 Updated today
Samuelca6399
Testing & QA Listed

testing-advanced

Advanced testing: E2E with Playwright/Cypress, property-based testing, mutation testing, contract testing, and CI/CD pipelines. Use when: (1) E2E tests with Playwright/Cypress, (2) Property-based testing with fast-check, (3) Mutation testing, (4) Contract testing with Pact, (5) CI/CD test pipelines, (6) Flaky test management. Auto-detects: playwright.config.*, cypress.config.*, e2e/, pact, fast-check, stryker, mutation in package.json

0 Updated today
murtazatouqeer