refactored test suite g1 to bun

This commit is contained in:
John Yeo
2025-10-22 22:03:52 +01:00
parent b653f46798
commit 6d325cc7a4
60 changed files with 2516 additions and 1388 deletions

21
scripts/testGroups/g3.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/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
# These tests still use Mocha - will be migrated later
MOCHA_CMD 'tests/contUse/entities/*.ts'
MOCHA_CMD 'tests/contUse/update/*.ts'
MOCHA_CMD 'tests/contUse/track/*.ts'
MOCHA_CMD 'tests/contUse/roles/*.ts'