mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-27 01:55:35 +00:00
28 lines
582 B
Bash
Executable File
28 lines
582 B
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
NOCO_HOME="${HOME}/.nocodb"
|
|
export NOCO_HOME
|
|
|
|
|
|
|
|
setup() {
|
|
cd "${WORKING_DIR}/configure" || exit 1
|
|
./setup.sh
|
|
}
|
|
|
|
teardown() {
|
|
cd "${WORKING_DIR}/configure" || 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"
|
|
}
|