mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-11 09:09:28 +00:00
aec2e7b5ac
The digest http authentication does not allow to use a password storing systems, that do not successively allow to retrieve it, even if hashed
24 lines
680 B
YAML
24 lines
680 B
YAML
# Codeception Test Suite Configuration
|
|
|
|
# suite for acceptance tests.
|
|
# perform tests in browser using the WebDriver or PhpBrowser.
|
|
# If you need both WebDriver and PHPBrowser tests - create a separate suite.
|
|
|
|
class_name: AcceptanceTester
|
|
modules:
|
|
enabled:
|
|
- PhpBrowser
|
|
- AcceptanceHelper
|
|
- Db
|
|
config:
|
|
PhpBrowser:
|
|
url: 'http://admin:1q2w3@localhost/build/'
|
|
Db:
|
|
dsn: 'pgsql:host=localhost;port=5432;dbname=fhctest'
|
|
user: 'fhcomplete'
|
|
password: 'fhcomplete'
|
|
dump: codeception/_data/dump.sql
|
|
populate: true
|
|
cleanup: false
|
|
reconnect: false
|