acceptance.suite.yml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. # Codeception Test Suite Configuration
  2. # suite for acceptance tests.
  3. # perform tests in browser using the Selenium-like tools.
  4. # powered by Mink (http://mink.behat.org).
  5. # (tip: that's what your customer will see).
  6. # (tip: test your ajax and javascript by one of Mink drivers).
  7. # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES.
  8. class_name: AcceptanceTester
  9. modules:
  10. enabled:
  11. - PhpBrowser
  12. # - Yii2:
  13. # configFile: '/codeception/config/acceptance.php'
  14. # you can use WebDriver instead of PhpBrowser to test javascript and ajax.
  15. # This will require you to install selenium. See http://codeception.com/docs/03-AcceptanceTests#selenium-webdriver
  16. # "restart" option is used by the WebDriver to start each time per test-file new session and cookies,
  17. # it is useful if you want to login in your app in each test.
  18. # - WebDriver
  19. config:
  20. PhpBrowser:
  21. # PLEASE ADJUST IT TO THE ACTUAL ENTRY POINT WITHOUT PATH INFO
  22. url: http://localhost:8080
  23. # WebDriver:
  24. # url: http://localhost:8080
  25. # browser: firefox
  26. # restart: true