mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-11 11:58:24 +00:00
36 lines
No EOL
975 B
YAML
36 lines
No EOL
975 B
YAML
# Codeception Test Suite Configuration
|
|
#
|
|
# Suite for acceptance tests.
|
|
# Perform tests in browser using the SuiteCRM WebDriver
|
|
#
|
|
# Use the enviornmental config files to configure the driver
|
|
|
|
class_name: AcceptanceTester
|
|
modules:
|
|
enabled:
|
|
- \Helper\Acceptance
|
|
- \Helper\WebDriverHelper
|
|
- Filesystem
|
|
- \SuiteCRM\Test\Driver\WebDriver
|
|
config:
|
|
\SuiteCRM\Test\Driver\WebDriver:
|
|
url: '%INSTANCE_URL%'
|
|
browser: '%BROWSER%'
|
|
host: '%WEBDRIVER_HOST%'
|
|
port: '%WEBDRIVER_PORT%'
|
|
env:
|
|
chrome:
|
|
modules:
|
|
config:
|
|
\SuiteCRM\Test\Driver\WebDriver:
|
|
browser: chrome
|
|
firefox:
|
|
modules:
|
|
config:
|
|
\SuiteCRM\Test\Driver\WebDriver:
|
|
browser: firefox
|
|
edge:
|
|
modules:
|
|
config:
|
|
\SuiteCRM\Test\Driver\WebDriver:
|
|
browser: MicrosoftEdge |