5 lines
123 B
Bash
5 lines
123 B
Bash
#!/bin/bash
|
|
echo "Run PHPUnit with code coverage"
|
|
bin/phpunit --coverage-html .coverage
|
|
google-chrome .coverage/index.html
|