Last active
August 18, 2018 12:45
-
-
Save neokree/56974881214a170adabe0658f25c8482 to your computer and use it in GitHub Desktop.
Prestashop Module Development article pt. 3 - code 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Codeception Test Suite Configuration | |
# | |
# Suite for acceptance tests. | |
# Perform tests in browser using the WebDriver or PhpBrowser. | |
# If you need both WebDriver and PHPBrowser tests - create a separate suite. | |
actor: AcceptanceTester | |
modules: | |
enabled: | |
- PhpBrowser | |
- \Helper\Acceptance | |
config: | |
PhpBrowser: | |
url: "%PS_DOMAIN%:8083" | |
env: | |
prestashop_1.6.1: | |
modules: | |
config: | |
PhpBrowser: | |
url: "%PS_DOMAIN%:8080" | |
prestashop_1.7.1: | |
modules: | |
config: | |
PhpBrowser: | |
url: "%PS_DOMAIN%:8081" | |
prestashop_1.7.2: | |
modules: | |
config: | |
PhpBrowser: | |
url: "%PS_DOMAIN%:8082" | |
prestashop_1.7.3: | |
# Nothing changed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment