Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 lines
1.1KB

  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. - tests\codeception\common\_support\FixtureHelper
  13. # you can use WebDriver instead of PhpBrowser to test javascript and ajax.
  14. # This will require you to install selenium. See http://codeception.com/docs/04-AcceptanceTests#Selenium
  15. # "restart" option is used by the WebDriver to start each time per test-file new session and cookies,
  16. # it is useful if you want to login in your app in each test.
  17. # - WebDriver
  18. config:
  19. PhpBrowser:
  20. # PLEASE ADJUST IT TO THE ACTUAL ENTRY POINT WITHOUT PATH INFO
  21. url: http://localhost:8080
  22. # WebDriver:
  23. # url: http://localhost:8080
  24. # browser: firefox
  25. # restart: true