forked from jhedstrom/drupalextension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
behat.yml.dist
70 lines (67 loc) · 1.91 KB
/
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
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:
filters:
tags: "~@api&&~@drush"
extensions:
Behat\MinkExtension\Extension:
goutte: ~
selenium2: ~
base_url: http://drupal.org
Drupal\DrupalExtension\Extension:
blackbox: ~
region_map:
content: "#content"
footer: "#footer"
left header: "#header-left"
right header: "#header-right"
right sidebar: "#aside-region"
selectors:
message_selector: '.messages'
error_message_selector: '.messages.error'
success_message_selector: '.messages.status'
warning_message_selector: '.messages.warning'
# Separate profile for testing using the api driver. This assumes a
# stock Drupal 7 install.
drupal7:
filters:
tags: "@d7"
extensions:
Behat\MinkExtension\Extension:
base_url: http://localhost:8887
Drupal\DrupalExtension\Extension:
api_driver: "drupal"
drupal:
# Change this to the absolute path to Drupal install.
drupal_root: "drupal7"
region_map:
left sidebar: "#sidebar-first"
content: "#content"
# Separate profile for testing using the Drush driver. Assumes a stock
# Drupal 7 install.
drush:
filters:
tags: "@drush"
extensions:
Behat\MinkExtension\Extension:
base_url: http://localhost:8887
Drupal\DrupalExtension\Extension:
drush_driver: "drush"
drush:
root: "drupal7"
region_map:
left sidebar: "#sidebar-first"
content: "#content"
# Separate profile for testing D8. Assumes a stock Drupal 8 install.
drupal8:
filters:
tags: "@d8&&~@d8wip"
extensions:
Behat\MinkExtension\Extension:
base_url: http://localhost:8888
Drupal\DrupalExtension\Extension:
api_driver: "drupal"
drupal:
# Change this to the absolute path to Drupal install.
drupal_root: "drupal8"
region_map:
left sidebar: "#sidebar-first"
content: "#content"