2018-03-02 20:33:00 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-05 19:47:45 +00:00
|
|
|
echo "Running unit tests in PHPUnit..."
|
|
|
|
phpunit
|
2018-03-02 20:33:00 +00:00
|
|
|
|
2018-03-05 19:47:45 +00:00
|
|
|
echo "Running integration tests headless in Crypess..."
|
|
|
|
# the value 0 leaves the cypress headless
|
|
|
|
./run-cypress.sh 0
|