← Back to Browse
Testing
E2EForge
Generate end-to-end tests from user stories with natural language descriptions.
★★★★☆ 4.3
132 reviews
3.9k
installs
v1.1.0
MIT
Install
npx skilldock install e2e-forge
About
Describe test scenarios in plain English and E2EForge generates Playwright or Cypress test suites. It handles page object creation, test data setup, assertion generation, and visual regression testing. Includes CI integration with automatic screenshots on failure.
Usage Example
// tests/checkout.story.js
module.exports = {
name: "User completes checkout",
steps: [
"Navigate to /products",
"Click the first product card",
"Click Add to Cart button",
"Navigate to /cart",
"Verify cart has 1 item",
"Click Checkout and fill payment form"
]
};