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.
30 lines
492 B
30 lines
492 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 if two instances of NoCoDB can be run" { |
|
../expects/install/scale.sh |
|
|
|
cd "${NOCO_HOME}" |
|
|
|
# Get scale from docker compose ps |
|
scale=$(docker compose ps | grep -c "nocodb/nocodb") |
|
[ "$scale" -eq 2 ] |
|
}
|
|
|