c55a791237
- Moved everything test-related into `tests` directory. Codeception tests are in `codeception`. - Removed database module since we're using fixtures and migrations. - Moved console entry points and bootstrap into `tests/codeception/bin`. - Adjusted travis build scripts. - Adjusted documentation to be consistent and reflect changes made.
17 lines
418 B
YAML
17 lines
418 B
YAML
# Codeception Test Suite Configuration
|
|
|
|
# suite for functional (integration) tests.
|
|
# emulate web requests and make application process them.
|
|
# (tip: better to use with frameworks).
|
|
|
|
# RUN `build` COMMAND AFTER ADDING/REMOVING MODULES.
|
|
#basic/web/index.php
|
|
class_name: TestGuy
|
|
modules:
|
|
enabled:
|
|
- Filesystem
|
|
- Yii2
|
|
config:
|
|
Yii2:
|
|
configFile: 'codeception/functional/_config.php'
|