-
Notifications
You must be signed in to change notification settings - Fork 6
/
behat.yml.dist
executable file
·27 lines (26 loc) · 986 Bytes
/
behat.yml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
default:
suites:
default:
contexts:
- App\Tests\Behat\FeatureContext
- behatch:context:json
- Behat\MinkExtension\Context\MinkContext
extensions:
FriendsOfBehat\SymfonyExtension:
bootstrap: features/bootstrap/bootstrap.php
kernel:
class: App\Kernel
environment: test
debug: ~
Behatch\Extension: ~
Behat\MinkExtension:
sessions:
default:
symfony: ~
AdamQuaile\Behat\CommandRunnerExtension:
beforeFeature:
- bin/console --env=test doctrine:database:drop --force --if-exists
- bin/console --env=test doctrine:database:create
- bin/console --env=test doctrine:migrations:migrate -n
afterSuite:
- bin/console --env=test doctrine:database:drop --force --if-exists