-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbehat.yml
44 lines (40 loc) · 1.11 KB
/
behat.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
default:
#
# Auto load contexts
#
autoload:
'': %paths.base%/behat/
suites:
#
# Suite for commands.
#
command:
contexts:
- Command\Context\CommandContext:
- '@service_container'
- '%paths.base%/src/AppBundle/DataFixtures/'
#
# Paths to command features.
#
paths:
- %paths.base%/behat/Command/features/
#
# Suite for first version of api.
#
api:
contexts:
- Api\Context\ApiContext:
- '@service_container'
- 'http://socialhose.local/'
- '%paths.base%/src/AppBundle/DataFixtures/'
#
# Paths to show features for api v1 tests.
#
paths:
- %paths.base%/behat/Api/features/Security/
- %paths.base%/behat/Api/features/V1/
extensions:
Behat\Symfony2Extension:
kernel:
env: test
debug: true