ipeevski/pauseonfail

Extension for Codeception to Pause on Fail

1.1.1 2020-08-20 05:36 UTC

This package is auto-updated.

Last update: 2024-04-20 14:05:19 UTC


README

This repository demonstrates the usage of Codeception Extension API.

Pause on Fail Extension for Codeception

When doing acceptance testing in Codeception, it is often useful to pause when a failure or error occurs, while developing the tests themselves. It lets you inspect the state and find a better way to solve the same problem and continue onwards.

Installation

  1. Install Codeception via Composer
  2. Run composer require --dev ipeevski/pauseonfail.
  3. Include extensions into codeception.yml configuration:

Sample:

paths:
    tests: tests
    log: tests/_log
    data: tests/_data
    helpers: tests/_helpers
extensions:
    enabled:
      - Codeception\Extension\PauseOnFail
  1. For the pause to have an effect, you need to run codeception in debugging mode, with the --debug flag

Pause

Class: Codeception\Extension\PauseOnFail.

If tests run into failure or error, pause and bring up console.