agentsclimarketplace

Cypress

Skill a5c-ai/babysitter/library/specializations/web-development/skills/cypress

Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration

Install
npx -y skills add a5c-ai/babysitter --skill cypress

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

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

SKILL.md

1.5 KB, as published. Nobody here has run it

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

describe('User Authentication', () => {
  beforeEach(() => {
    cy.visit('/login');
  });

  it('should login successfully', () => {
    cy.get('[data-testid="email"]').type('[email protected]');
    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

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.