Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,29 @@ To create [Unit Tests](https://codeception.com/docs/05-UnitTests) or [Acceptance
vendor/bin/codecept generate:suite Unit
vendor/bin/codecept generate:suite Acceptance
```

### Using local code for tests

Assuming you have the following directory structure:
```
Codeception/
├─ module-symfony/
├─ symfony-module-tests/
│ ├─ composer.json
│ ├─ composer.lock
```

Add code listed below to the composer.json and run `composer update`.
```
{
// ...
"repositories": [
{
"type": "path",
"url": "../module-symfony"
}
]
}
```

Don't forget to revert composer.json and run `composer update` before commit changes.
Loading