diff options
author | Lev Lazinskiy <lev@circleci.com> | 2016-06-08 18:41:34 -0700 |
---|---|---|
committer | Lev Lazinskiy <lev@circleci.com> | 2016-06-08 18:41:34 -0700 |
commit | e20527fbc20df5c2bd1c0c5a0ecbdf0404c8d4e8 (patch) | |
tree | 4a54b100153fbc6dcf2152c1000399a893bb65eb /Makefile | |
parent | 6cf6ab2e2df7f00e82d80d1e094a0454139ce68f (diff) |
Add test-browser to Make
This allows you to run selenium acceptance tests with `make test-browser`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |