-
Notifications
You must be signed in to change notification settings - Fork 4
/
codeception.yml
51 lines (50 loc) · 1.66 KB
/
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
51
namespace: SprykerSdk\Sdk\Tests
suites:
unit:
path: Sdk/Unit
actor: UnitTester
modules:
enabled:
- Asserts
- \SprykerSdk\Sdk\Tests\Helper\Core\Application\Service\ContextSerializerHelper
- \SprykerSdk\Sdk\Tests\Helper\Core\Application\Service\FileManagerHelper
- \SprykerSdk\Sdk\Tests\Helper\Core\Application\Service\PlaceholderResolverHelper
- \SprykerSdk\Sdk\Tests\Helper\Core\Application\Service\SettingManagerHelper
step_decorators: ~
acceptance:
path: Sdk/Acceptance
actor: AcceptanceTester
modules:
enabled:
- Asserts
- Cli
- Filesystem
- \SprykerSdk\Sdk\Tests\Helper\Core\Application\Service\TelemetryEventHelper
- \SprykerSdk\Sdk\Tests\Helper\Presentation\RestApi\RestApiHelper
- SprykerSdk\Sdk\Tests\Helper\RestApiServerHelper:
port: 8000
- Symfony:
app_path: app
environment: test
- SprykerSdk\Sdk\Tests\Helper\RestApiHelper:
url: http://localhost:8000/api/v1
depends: PhpBrowser
part: Json
step_decorators: ~
settings:
shuffle: true
lint: true
paths:
tests: tests
output: tests/_output
support: tests/_support
data: tests
coverage:
enabled: true
include:
- src/*
exclude:
- src/Core/Domain/Entity/*
- src/Core/Application/Dto/*
- src/Infrastructure/Entity/*
- src/Extension/Task/*