Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flaconi/behat-contexts
Behat extension with custom helper steps
https://github.com/flaconi/behat-contexts
behat php testing
Last synced: about 4 hours ago
JSON representation
Behat extension with custom helper steps
- Host: GitHub
- URL: https://github.com/flaconi/behat-contexts
- Owner: Flaconi
- License: mit
- Created: 2019-01-11T08:43:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-16T16:57:30.000Z (over 1 year ago)
- Last Synced: 2024-05-09T18:15:29.546Z (6 months ago)
- Topics: behat, php, testing
- Language: PHP
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 21
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Flaconi Behat Contexts
[![Latest version](https://img.shields.io/packagist/v/flaconi/behat-contexts.svg?style=flat-square&colorB=007EC6)](https://packagist.org/packages/flaconi/behat-contexts)
[![Downloads](https://img.shields.io/packagist/dt/flaconi/behat-contexts.svg?style=flat-square&colorB=007EC6)](https://packagist.org/packages/flaconi/behat-contexts)
[![Travis build status](https://img.shields.io/travis/Flaconi/behat-contexts/master.svg?label=travis&style=flat-square)](https://travis-ci.org/Flaconi/behat-contexts)
![PHPStan](https://img.shields.io/badge/style-level%207-brightgreen.svg?style=flat-square&label=phpstan)Behat extension with custom helper steps
## Table of contents
1. [Installation](#installation)
2. [Enable this extension and configure Behat to use it](#enable-this-extension-and-configure-behat-to-use-it)
3. [Contributing](#contributing)## Installation
The recommended way to install Flaconi Behat Contexts is [through Composer](http://getcomposer.org).
```JSON
{
"require-dev": {
"flaconi/behat-contexts": "^1.0"
}
}
```## Enable this extension and configure Behat to use it
```yaml
# behat.yml
default:
# ...
extensions:
Flaconi\Behat\Extension: ~
```## Contributing
To make this repository work on your machine, clone it and run these three commands in the root directory of the repository:
```
composer install
composer code-style
composer tests-ci
```After writing some code and editing or adding feature tests, run these commands again to check that everything is OK:
```
composer code-style
composer tests-ci
```We are always looking forward for your bugreports, feature requests and pull requests. Thank you.