Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. web:
  2. image: php:5-apache
  3. volumes:
  4. - ../..:/var/www/html
  5. ports:
  6. - 8080:80
  7. links:
  8. - db:db
  9.  
  10. db:
  11. image: mysql
  12. volumes:
  13. - ../../tests/_envs/sql:/var/lib/mysql
  14. ports:
  15. - 3306:3306
  16.  
  17. hub:
  18. image: selenium/hub
  19. ports:
  20. - 4444:4444
  21.  
  22. firefox:
  23. image: selenium/node-firefox-debug
  24. ports:
  25. - 5900
  26. links:
  27. - hub:hub
  28.  
  29. class_name: AcceptanceTester
  30. modules:
  31. enabled:
  32. - JoomlaBrowser:
  33. url: 'http://localhost:8080/' # the url that points to the joomla installation at /tests/system/joomla-cms
  34. browser: 'firefox'
  35. window_size: 1024x768
  36. capabilities:
  37. unexpectedAlertBehaviour: 'accept'
  38. username: 'admin'
  39. password: 'admin'
  40. database host: 'localhost' # place where the Application is Hosted #server Address
  41. database user: 'root' # MySQL Server user ID, usually root
  42. database password: '1234' # MySQL Server password, usually empty or root
  43. database name: 'dbname' # DB Name, at the Server
  44. database type: 'mysqli' # type in lowercase one of the options: MySQLMySQLiPDO
  45. database prefix: 'jos_' # DB Prefix for tables
  46. install sample data: 'Yes' # Do you want to Download the Sample Data Along with Joomla Installation, then keep it Yes
  47. sample data: 'Default English (GB) Sample Data' # Default Sample Data
  48. admin email: 'admin@mydomain.com' # email Id of the Admin
  49. language: 'English (United Kingdom)' # Language in which you want the Application to be Installed
  50. joomla folder: '/home/.../path to Joomla Folder' # Path to Joomla installation where we execute the tests
  51. - HelperAcceptance
  52. error_reporting: E_ALL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement