mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
582 B
27 lines
582 B
#!/usr/bin/env bats |
|
|
|
NOCO_HOME="${HOME}/.nocodb" |
|
export NOCO_HOME |
|
|
|
WORKING_DIR="$(pwd)" |
|
|
|
setup() { |
|
cd "${WORKING_DIR}" || exit 1 |
|
./setup.sh |
|
} |
|
|
|
teardown() { |
|
cd "${WORKING_DIR}" || exit 1 |
|
./setup.sh |
|
} |
|
|
|
@test "Check Redis, WatchTower and NocoDB are down" { |
|
../expects/configure/stop.sh |
|
|
|
cd "${NOCO_HOME}" || exit 1 |
|
|
|
# Verify container is not running |
|
docker compose ps | grep -q 'redis' && fail "Redis is running" |
|
docker compose ps | grep -q 'watchtower' && fail "WatchTower is running" |
|
docker compose ps | grep -q 'nocodb' && fail "NocoDB is running" |
|
}
|
|
|