forked from civictheme/monorepo-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbehat.yml
70 lines (67 loc) · 2.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
default:
autoload: [ '%paths.base%/tests/behat/bootstrap' ]
gherkin:
# Disable caching during development. It is enabled for profiles below.
cache: ~
filters:
# By default, run tests shared between D9 and D10 (not specific to only
# D9 or D10), not requiring a Drupal sub-theme and not being skipped.
tags: '~@d9only&&~@d10only&&~@subtheme&&~@skipped'
suites:
default:
paths: [ '%paths.base%/tests/behat/features' ]
contexts:
- FeatureContext
- Drupal\DrupalExtension\Context\MinkContext
- Drupal\DrupalExtension\Context\MarkupContext
- Drupal\DrupalExtension\Context\MessageContext
- Drupal\DrupalExtension\Context\DrushContext
- DrevOps\BehatScreenshotExtension\Context\ScreenshotContext
extensions:
Drupal\MinkExtension:
goutte: ~
base_url: http://nginx:8080
files_path: '%paths.base%/tests/behat/fixtures'
browser_name: chrome
selenium2:
wd_host: "http://chrome:4444/wd/hub"
javascript_session: selenium2
# Provides integration with Drupal APIs.
Drupal\DrupalExtension:
blackbox: ~
api_driver: drupal
drush_driver: drush
drupal:
drupal_root: docroot
drush:
root: docroot
selectors:
message_selector: '.messages'
error_message_selector: '.messages.error'
success_message_selector: '.messages.status'
warning_message_selector: '.messages.warning'
# Allows to capture HTML and JPG screenshots (based on the driver used).
DrevOps\BehatScreenshotExtension:
dir: '%paths.base%/tests/behat/screenshots'
# Show explicit fail information and continue the test run.
DrevOps\BehatFormatProgressFail\FormatExtension: ~
# Default profile for parallel run with index 0.
default0:
gherkin:
filters:
tags: '~@d9only&&~@d10only&&~@subtheme&&~@skipped&&~@p1'
# Default profile for parallel run with index 1.
default1:
gherkin:
filters:
tags: '~@d9only&&~@d10only&&~@subtheme&&~@skipped&&@p1'
# Drupal 9 sub-theme profile for parallel run with index 0.
subtheme0:
gherkin:
filters:
tags: '~@d10only&&~@skipped&&~@p1'
# Drupal 9 sub-theme profile for parallel run with index 1.
subtheme1:
gherkin:
filters:
tags: '~@d10only&&~@skipped&&@p1'