mirror of
https://github.com/jbcr/core.git
synced 2026-03-30 04:42:25 +02:00
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
default:
|
|
|
|
gherkin:
|
|
cache: "%paths.base%/var/cache/behat/behat_gherkin"
|
|
filters:
|
|
tags: ~@wip
|
|
|
|
autoload:
|
|
- "%paths.base%/tests/behat/bootstrap"
|
|
|
|
formatters:
|
|
pretty:
|
|
output_styles:
|
|
comment: [ white, black ]
|
|
calls:
|
|
error_reporting: 16383 # E_ALL & ~E_USER_DREPRECATED
|
|
|
|
testers:
|
|
rerun_cache: "%paths.base%/var/cache/behat/behat_rerun"
|
|
|
|
extensions:
|
|
FriendsOfBehat\SymfonyExtension:
|
|
kernel:
|
|
class: Bolt\Kernel
|
|
Lakion\Behat\MinkDebugExtension:
|
|
directory: var/log/behat-reports
|
|
screenshot: true
|
|
|
|
Behat\MinkExtension:
|
|
browser_name: chrome
|
|
base_url: 'http://127.0.0.1:8088/'
|
|
goutte: ~
|
|
selenium2: ~
|
|
sessions:
|
|
default:
|
|
selenium2:
|
|
capabilities:
|
|
extra_capabilities:
|
|
chromeOptions:
|
|
args:
|
|
- "--headless"
|
|
- "--disable-gpu"
|
|
- "--window-size=1920,1080"
|
|
w3c: false
|
|
|
|
|
|
Behatch\Extension: ~
|
|
|
|
suites:
|
|
default:
|
|
filters:
|
|
tags: "~@wip"
|
|
contexts:
|
|
- Behatch\Context\JsonContext
|
|
- Behatch\Context\TableContext
|
|
- behatch:context:browser: #include Behatch\Context\BrowserContext and override default timeout
|
|
timeout: 5
|
|
- Context\CommonContext
|
|
paths: [ "%paths.base%/tests/api", "%paths.base%/tests/e2e"]
|