Guest User

Untitled

a guest
Mar 3rd, 2016
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.76 KB | None | 0 0
  1. # This is the Codeception Test Suite Configuration
  2.  
  3. # To use it rename this file to acceptance.suite.yml (it will be ignored by git)
  4.  
  5. # To run the test modify the following parameters according to your localhost details:
  6. #  - url
  7. #  - folder
  8. #  - db_user and db_pass
  9.  
  10. # suite for acceptance tests.
  11. # perform tests in browser using the WebDriver or PhpBrowser.
  12. # If you need both WebDriver and PHPBrowser tests - create a separate suite.
  13.  
  14. class_name: AcceptanceTester
  15. modules:
  16.     enabled:
  17.        - JoomlaBrowser
  18.         - AcceptanceHelper
  19.     config:
  20.         JoomlaBrowser:
  21.             url: 'http://localhost/weblinks/tests/joomla-cms3'     # the url that points to the joomla installation at /tests/system/joomla-cms
  22.             browser: 'firefox'
  23.             window_size: 1024x768
  24.             capabilities:
  25.               unexpectedAlertBehaviour: 'accept'
  26.             username: 'admin'                      # UserName for the Administrator
  27.             password: 'admin'                      # Password for the Administrator
  28.             database host: 'localhost'             # place where the Application is Hosted #server Address
  29.             database user: 'root'                  # MySQL Server user ID, usually root
  30.             database password: 'root'                  # MySQL Server password, usually empty or root
  31.             database name: 'joomla_test'         # DB Name, at the Server
  32.             database type: 'mysqli'                # type in lowercase one of the options: MySQL\MySQLi\PDO
  33.             database prefix: 'jos_'                # DB Prefix for tables
  34.             install sample data: 'no'              # Do you want to Download the Sample Data Along with Joomla Installation, then keep it Yes
  35.             sample data: 'Default English (GB) Sample Data'    # Default Sample Data
  36.             admin email: 'admin@mydomain.com'      # email Id of the Admin
  37.             language: 'English (United Kingdom)'   # Language in which you want the Application to be Installed
  38.         AcceptanceHelper:
  39.             repo_folder: '/var/www/html/weblinks/' # Path to the Extension repository. To be used by tests to install via Install from folder
  40.             counter_test_url: 'http://localhost/weblinks/tests/joomla-cms3' # the url for the weblink item used to test hits counter
  41.             url: 'http://localhost/weblinks/tests/joomla-cms3' # the url that points to the joomla installation at /tests/system/joomla-cms - we need it twice here
  42. error_level: "E_ALL & ~E_STRICT & ~E_DEPRECATED"
  43. env:
  44.     desktop: ~
  45.     tablet:
  46.         modules:
  47.             config:
  48.                 JoomlaBrowser:
  49.                     window_size: 768x1024
  50.     phone:
  51.         modules:
  52.             config:
  53.                 JoomlaBrowser:
  54.                     window_size: 480x640
Add Comment
Please, Sign In to add comment