-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeception.yml
50 lines (45 loc) · 1003 Bytes
/
codeception.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
bootstrap: _bootstrap.php
settings:
colors: true
memory_limit: 2048M
coverage:
enabled: true
include:
- src/*
exclude:
- src/assets/*
- src/migrations/*
- src/templates/*
- src/translations/*
params:
- tests/.env
modules:
config:
\craft\test\Craft:
configFile: 'tests/_craft/config/test.php'
entryUrl: 'https://contentfield.test/index.php'
projectConfig: {}
migrations: []
fullMock: false
plugins:
- class: lenz\contentfield\Plugin
handle: contentfield
- class: craft\redactor\Plugin
handle: redactor
# Should tests and fixtures be cleaned
cleanup: true
# Wrap in transaction
transaction: true
# What DB setup work do we need to do.
dbSetup:
clean: true
setupCraft: true
groups:
fields: [tests/unit/fieldTypes]