phpunit の使い方を追記
This commit is contained in:
parent
0e45d27295
commit
f895996b18
@ -86,6 +86,15 @@ docker-compose run --rm web yarn watch
|
||||
現在Docker環境でのHMRはサポートしてません。Docker外ならおそらく動くでしょう。
|
||||
その他詳しくはlaravel-mixのドキュメントなどを当たってください。
|
||||
|
||||
## phpunit によるテスト
|
||||
|
||||
変更をしたらPull Requestを投げる前にテストが通ることを確認してください。
|
||||
テストは以下のコマンドで実行できます。
|
||||
|
||||
```
|
||||
docker-compose exec web composer test
|
||||
```
|
||||
|
||||
## 環境構築上の諸注意
|
||||
|
||||
- 初版時点では、DB サーバとして PostgreSQL を使うよう .env ファイルを設定するくらいです。
|
||||
|
@ -50,6 +50,9 @@
|
||||
],
|
||||
"fix": [
|
||||
"php-cs-fixer fix"
|
||||
],
|
||||
"test": [
|
||||
"phpunit"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
|
Loading…
Reference in New Issue
Block a user