mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
7 lines
135 B
Bash
7 lines
135 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# create DB if not exists
|
||
|
rm -f tests/database/db.sqlite
|
||
|
touch tests/database/db.sqlite
|
||
|
php artisan migrate --seed
|
||
|
phpunit
|