多维表格
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.

28 lines
511 B

#!/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 all containers are down" {
../expects/configure/stop.sh
cd "${NOCO_HOME}" || exit 1
# Verify container is not running
5 months ago
docker compose ps | grep -q 'redis' && exit 1
docker compose ps | grep -q 'watchtower' && exit 1
docker compose ps | grep -q 'nocodb' && exit 1
}