acceptance.suite.yml 1014 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Codeception Test Suite Configuration

# suite for acceptance tests.
# perform tests in browser using the Selenium-like tools.
# powered by Mink (http://mink.behat.org).
# (tip: that's what your customer will see).
# (tip: test your ajax and javascript by one of Mink drivers).

# RUN `build` COMMAND AFTER ADDING/REMOVING MODULES.

class_name: WebGuy
modules:
    enabled:
        - WebHelper
        - PhpBrowser
        - common\tests\_helpers\FixtureHelper
# you can use WebDriver instead of PhpBrowser to test javascript and ajax.
# This will require you to install selenium. See http://codeception.com/docs/04-AcceptanceTests#Selenium
19
# "restart" option is used by the WebDriver to start each time per test-file new session and cookies,
20 21 22 23 24 25 26 27
# it is useful if you want to login in your app in each test.
#        - WebDriver
    config:
        PhpBrowser:
            url: 'http://localhost:8080'
#        WebDriver:
#            url: 'http://localhost'
#            browser: firefox
Mark committed
28
#            restart: true