mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 01:55:44 +00:00
29 lines
498 B
Bash
29 lines
498 B
Bash
#!/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 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'
|
|
}
|