Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cawolf/behat-analysis-extension
https://github.com/cawolf/behat-analysis-extension
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cawolf/behat-analysis-extension
- Owner: cawolf
- License: mit
- Created: 2017-07-18T04:00:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T05:29:51.000Z (2 months ago)
- Last Synced: 2024-10-27T23:14:48.664Z (2 months ago)
- Language: PHP
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Behat analysis extension
This extension provides analysis metrics to maintain big and growing behat suites and contexts. It does
* accumulate running times of steps and hooks, allowing to find the slowest parts of your suite
## Installation
This extension requires:
* Behat 3.0+
### Use [composer](http://getcomposer.org)
1. Run composer with
composer require --dev cawolf/behat-analysis-extension
or define dependencies in your ``composer.json``:{
"require-dev": {
..."cawolf/behat-analysis-extension": "*"
}
}
2. Activate extension by specifying its class in your ``behat.yml``:# behat.yml
default:
# ...
extensions:
Cawolf\Behat\Analysis: ~## Usage
Run your behat suite as usual:
vendor/bin/behat -s default## Contributors
* Christian A. Wolf [cawolf](http://github.com/cawolf)
* Sébastien Terodde [MollocH](https://github.com/MollocH)