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.
32 lines
549 B
32 lines
549 B
#!/usr/bin/env bats |
|
|
|
NOCO_HOME="./nocodb" |
|
export NOCO_HOME |
|
|
|
|
|
|
|
setup() { |
|
cd "${WORKING_DIR}/install" || exit 1 |
|
./setup.sh |
|
} |
|
|
|
teardown() { |
|
if [ -n "$SKIP_TEARDOWN" ]; then |
|
return |
|
fi |
|
|
|
cd "${WORKING_DIR}/install" || exit 1 |
|
./setup.sh |
|
} |
|
|
|
@test "Check Redis is enabled when specified" { |
|
../expects/install/redis.sh |
|
|
|
cd "${NOCO_HOME}" |
|
|
|
# Check Docker Compose file to verify Redis configuration |
|
grep -q 'redis' docker-compose.yml |
|
|
|
# Verify Redis container is running |
|
docker compose ps | grep -q 'redis' |
|
}
|
|
|