Skip to content

Commit

Permalink
test: update global scenarios tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed May 31, 2024
1 parent a02b3d2 commit f4798c3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions features/test/_global/global-checks.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/vin/bash

check 'php-fpm is running' sh -c 'ps aux | grep php-fpm'
check 'mailpit is running' sh -c 'ps aux | grep mailpit'
check 'memcached is running' sh -c 'ps aux | grep memcached'
check 'mysql is running' sh -c 'ps aux | grep mysqld'
check 'nginx is running' sh -c 'ps aux | grep nginx'
check 'php-fpm is running' sudo sh -c 'sv status php-fpm | grep -E ^run:'
check 'mailpit is running' sudo sh -c 'sv status mailpit | grep -E ^run:'
check 'memcached is running' sudo sh -c 'sv status memcached | grep -E ^run:'
check 'mysql is running' sudo sh -c 'sv status mariadb | grep -E ^run:'
check 'nginx is running' sudo sh -c 'sv status nginx | grep -E ^run:'
check 'elasticsearch is running' sudo sh -c 'sv status elasticsearch | grep -E ^run:'

0 comments on commit f4798c3

Please sign in to comment.