Skip to content
Michael Bodnarchuk edited this page Nov 5, 2024 · 27 revisions

✅ 3.6

  • Healers
  • Refactored AI

4.0

  • Disable promise chain globally or per test
  • Migrate to ESM

Explicitly import helpers:

// codecept.conf.js
import { Playwright } from 'codeceptjs/helpers'
import ExpectHelper from '@codeceptjs/expect-helper'

config = {
  helpers: {
    Playwright: {
    },
    ExpectHelper: {
      // maybe config here
    }
  }

}

4.1

  • State management (similar to fixtures in Playwright)
Clone this wiki locally