Skip to content

Fix doctrine connection test #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2021
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