ipeevski / PauseOnFail

Pause on Error Extension for Codeception

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pause On Fail

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.


About

Pause on Error Extension for Codeception

License:MIT License


Languages

Language:PHP 100.0%