mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 16:55:37 +00:00
27 lines
419 B
Bash
Executable File
27 lines
419 B
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
NOCO_HOME="./nocodb"
|
|
export NOCO_HOME
|
|
|
|
|
|
|
|
setup() {
|
|
cd "${WORKING_DIR}/configure" || exit 1
|
|
./setup.sh setup
|
|
}
|
|
|
|
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
|
|
count=$(docker compose ps -q | wc -l)
|
|
[ "$count" -eq 0 ]
|
|
}
|