Advertisement
dgwatkins

acceptance.suite.yml

Oct 23rd, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.53 KB | None | 0 0
  1. # Codeception Test Suite Configuration for WPML Codeception
  2.  
  3. class_name: AcceptanceTester
  4. modules:
  5.     enabled:
  6.        - \Helper\Acceptance
  7.         - WPWebDriver
  8.         - Asserts
  9.         - Cli
  10.         - Filesystem
  11.         - WPCliDb
  12.         - WPDb
  13.         - WPCLI
  14.         - WPLoad
  15.         - CheckDebugLog
  16.     config:
  17.         WPDb:
  18.             dsn: 'mysql:host=mysql;dbname=wordpress'
  19.             user: 'root'
  20.             password: 'password'
  21.             dump: codeception/_data/dump.sql
  22.             populate: false
  23.             cleanup: false
  24.             reconnect: false
  25.             url: 'http://web'
  26.             urlReplacement: true
  27.             tablePrefix: wp_
  28.         WPWebDriver:
  29.             url: 'http://web'
  30.             browser: 'chrome'
  31.             host: selenium
  32.             port: 4444
  33.             window_size: '1440x1080'
  34.             adminUsername: 'admin'
  35.             adminPassword: 'admin'
  36.             adminPath: '/wp-admin/'
  37.             log_js_errors: true
  38.             restart: true
  39.         CheckDebugLog:
  40.             debug: false
  41.             debugLog: false
  42.             WPPath: ''
  43.         WPCliDb:
  44.             dump: codeception/_data/dump.sql
  45.             cleandump: codeception/_data/cleandb.sql
  46.             dump1: codeception/_data/german-default.sql
  47.             dump2: codeception/_data/german-default-no-english.sql
  48.         WPCLI:
  49.             path: /var/www/html
  50.             throw: true
  51.         WPLoad:
  52.             path: 'wp-load.php'
  53. extensions:
  54.     enabled: [Codeception\Extension\RunFailed]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement