22 lines
460 B
Bash
Executable File
22 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test Group 3: Continuous Use Tests
|
|
# Description: Tests for continuous usage tracking, entities, and roles
|
|
|
|
# Source shared configuration
|
|
source "$(dirname "$0")/config.sh"
|
|
|
|
# Setup if requested
|
|
if [[ "$1" == *"setup"* ]]; then
|
|
echo "Running test setup..."
|
|
BUN_SETUP
|
|
fi
|
|
|
|
BUN_PARALLEL_COMPACT \
|
|
'server/tests/contUse/entities' \
|
|
'server/tests/contUse/update' \
|
|
'server/tests/contUse/track' \
|
|
'server/tests/contUse/roles' \
|
|
--max=6
|
|
|