Begin creating a test application
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -1,4 +1,3 @@
|
|||||||
/.gitattributes export-ignore
|
/.gitattributes export-ignore
|
||||||
/.gitignore export-ignore
|
/.gitignore export-ignore
|
||||||
/.travis.yml export-ignore
|
/.travis.yml export-ignore
|
||||||
/behat.yml.dist export-ignore
|
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,3 @@
|
|||||||
/vendor
|
/vendor
|
||||||
|
|
||||||
/behat.yml
|
|
||||||
/composer.lock
|
/composer.lock
|
||||||
|
|||||||
@@ -29,4 +29,4 @@ install:
|
|||||||
script:
|
script:
|
||||||
- composer validate --strict
|
- composer validate --strict
|
||||||
|
|
||||||
- vendor/bin/behat --strict
|
- vendor/bin/behat --strict --config=test/behat.yml
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ $ composer require friends-of-behat/symfony-extension --dev
|
|||||||
default:
|
default:
|
||||||
# ...
|
# ...
|
||||||
extensions:
|
extensions:
|
||||||
FriendsOfBehat\SymfonyExtension: Z
|
FriendsOfBehat\SymfonyExtension: ~
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Good luck & have fun!
|
3. Good luck & have fun!
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "friends-of-behat/symfony-extension",
|
"name": "friends-of-behat/symfony-extension",
|
||||||
"description": "Allows to overwrite suites' default settings.",
|
"description": "Integrates Behat with Symfony (both 2 and 3).",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@@ -18,7 +18,11 @@
|
|||||||
"require-dev": {
|
"require-dev": {
|
||||||
"behat/mink": "^1.7",
|
"behat/mink": "^1.7",
|
||||||
"behat/mink-browserkit-driver": "^1.3",
|
"behat/mink-browserkit-driver": "^1.3",
|
||||||
"behat/mink-extension": "^2.2"
|
"behat/mink-extension": "^2.2",
|
||||||
|
"symfony/framework-bundle": "^2.7|^3.0"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"behat/mink-browserkit-driver": "^1.3"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": { "FriendsOfBehat\\SymfonyExtension\\": "src/" }
|
"psr-4": { "FriendsOfBehat\\SymfonyExtension\\": "src/" }
|
||||||
|
|||||||
Reference in New Issue
Block a user