-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcodeception.yml
More file actions
33 lines (33 loc) · 851 Bytes
/
codeception.yml
File metadata and controls
33 lines (33 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
actor: Tester
paths:
tests: tests
log: tests/_output
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
bootstrap: _bootstrap.php
params:
- env
- tests/.env
modules:
config:
\craft\test\Craft:
configFile: "tests/_craft/config/test.php"
entryUrl: "https://test.craftcms.test/index.php"
projectConfig: {}
migrations: []
plugins: []
cleanup: true
transaction: true
dbSetup: { clean: true, setupCraft: true }
env:
# Call codecept run <command> --env fast
# Skips slow DB tasks. Test must be run without the --env
# flag at least once before this will work properly.
fast:
modules:
config:
\craft\test\Craft:
# Don't clean out the database
dbSetup: { clean: false, setupCraft: false, applyMigrations: false }