CodeceptJS v3.0.0 Release Notes

  • ⬆️ > 👌 LEARN HOW TO UPGRADE TO CODECEPTJS 3 ➡

    • 0️⃣ Playwright set to be a default engine.
    • NodeJS 12+ required
    • 💥 BREAKING CHANGE: Syntax for tests has changed.
    // Previous
    Scenario('title', (I, loginPage) => {});
    
    // Current
    Scenario('title', ({ I, loginPage }) => {});
    
    npx create-codeceptjs .
    

    Read changelog to learn more about version 👇