friendica_stable_2026.01/doc/en/developer/tests.md
Marcus Funch f4c031feb8 Docs: Add consistent link back to /help, remove manual references
And additionally: Limit the width of iframes in the quick start guide to the parent container
2025-11-02 23:30:05 +01:00

16 lines
372 B
Markdown

# Tests
You can run unit tests with [PHPUnit](https://phpunit.de/):
```bash
phpunit
```
Some tests require access to a MySQL database.
You can specify the database credentials in environment variables:
```bash
USER=database_user PASS=database_password DB=database_name phpunit
```
**Warning**: This will empty all the tables! Never use this on a production database.