1 line
2.3 KiB
JSON
1 line
2.3 KiB
JSON
{"content": "---\nallowed-tools: Read, Write, Edit, Bash\nargument-hint: [framework] | --cypress | --playwright | --webdriver | --puppeteer | --mobile\ndescription: Configure comprehensive end-to-end testing suite with framework selection and CI integration\n---\n\n# E2E Setup\n\nConfigure comprehensive end-to-end testing suite with framework optimization: **$ARGUMENTS**\n\n## Current E2E Context\n\n- Application type: !`find . -name \"index.html\" -o -name \"app.js\" -o -name \"App.tsx\" | head -1 && echo \"Web app\" || echo \"Detect app type\"`\n- Framework: !`grep -l \"react\\\\|vue\\\\|angular\" package.json 2>/dev/null || echo \"Detect framework\"`\n- Existing tests: !`find . -name \"cypress\" -o -name \"playwright\" -o -name \"e2e\" | head -1 || echo \"No E2E setup\"`\n- CI system: !`find . -name \".github\" -o -name \".gitlab-ci.yml\" | head -1 || echo \"No CI detected\"`\n\n## Task\n\nImplement comprehensive end-to-end testing with framework selection and optimization:\n\n**Framework Focus**: Use $ARGUMENTS to specify Cypress, Playwright, WebDriver, Puppeteer, mobile testing, or auto-detect best fit\n\n**E2E Testing Framework**:\n\n1. **Framework Selection & Setup** - Choose optimal E2E tool, install dependencies, configure basic settings, setup project structure\n2. **Test Environment Configuration** - Setup test environments, configure base URLs, implement environment switching, optimize test isolation\n3. **Page Object Patterns** - Design page object model, create reusable components, implement element selectors, optimize maintainability\n4. **Test Data Management** - Setup test data strategies, implement fixtures, configure database seeding, design cleanup procedures\n5. **Cross-Browser Testing** - Configure multi-browser execution, setup mobile testing, implement responsive testing, optimize compatibility\n6. **CI/CD Integration** - Configure automated execution, setup parallel testing, implement reporting, optimize performance\n\n**Advanced Features**: Visual regression testing, accessibility testing, performance monitoring, API testing integration, mobile device testing.\n\n**Quality Assurance**: Test reliability optimization, flaky test prevention, execution speed optimization, debugging capabilities.\n\n**Output**: Complete E2E testing setup with framework configuration, test suites, CI integration, and maintenance workflows.\n"} |