mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 19:35:29 +00:00
34 lines
509 B
Bash
Executable File
34 lines
509 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() {
|
|
if [ -n "$SKIP_TEARDOWN" ]; then
|
|
return
|
|
fi
|
|
|
|
cd "${WORKING_DIR}/install" || exit 1
|
|
./setup.sh
|
|
}
|
|
|
|
@test "Check NocoDB is scaled to 3 instances" {
|
|
nproc() {
|
|
echo 4
|
|
}
|
|
|
|
../expects/configure/scale.sh
|
|
|
|
cd "${NOCO_HOME}" || exit 1
|
|
|
|
result=$(docker compose ps | grep -c "nocodb/nocodb")
|
|
[ "${result}" -eq 3 ]
|
|
}
|