mirror of
https://github.com/claude-did-this/claude-hub.git
synced 2026-02-14 19:30:02 +01:00
This commit reorganizes all scripts in the repository into a more structured directory layout for better maintainability: - Categorizes scripts by functionality (setup, build, aws, runtime, security, utils) - Organizes test scripts into logical categories - Consolidates redundant scripts with unified interfaces - Adds backward compatibility wrappers - Adds detailed SCRIPTS.md documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
514 B
Bash
Executable File
24 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
# Create required test directories for CI integration
|
|
|
|
# Define the directories to create
|
|
TEST_DIRS=(
|
|
"test/unit/controllers"
|
|
"test/unit/services"
|
|
"test/unit/utils"
|
|
"test/integration/github"
|
|
"test/integration/claude"
|
|
"test/integration/aws"
|
|
"test/e2e/scenarios"
|
|
"test/e2e/scripts"
|
|
"test-results/jest"
|
|
"coverage"
|
|
)
|
|
|
|
# Create the directories
|
|
for dir in "${TEST_DIRS[@]}"; do
|
|
mkdir -p "$dir"
|
|
echo "Created directory: $dir"
|
|
done
|
|
|
|
echo "Test directories are ready for CI integration." |