Add test-browser to Make

This allows you to run selenium acceptance tests with `make test-browser`
This commit is contained in:
Lev Lazinskiy 2016-06-08 18:41:34 -07:00
parent 6cf6ab2e2d
commit e20527fbc2
1 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,9 @@ test-postgres:
unittest: test-sqlite test-mysql test-postgres
test-browser:
@ phpunit -c tests/acceptance.xml
sql:
@ pg_dump --schema-only --no-owner --no-privileges --quote-all-identifiers -n public --file app/Schema/Sql/postgres.sql kanboard
@ pg_dump -d kanboard --column-inserts --data-only --table settings >> app/Schema/Sql/postgres.sql