vibetunnel/web/test-beta15-full.sh
Peter Steinberger 1ee6d50bab fix: Git repository integration test - properly set up Git repository state
- Fix the failing test 'should include Git info in session creation request'
- Test now properly calls checkGitRepository() to populate currentBranch and selectedBaseBranch
- Ensures Git info is correctly included in session creation requests when repository is detected
- Fixes test by making selectedBaseBranch match currentBranch to avoid branch switching warning path

Test was failing because gitRepoPath was undefined in request body, now properly includes Git repo path and branch information.
2025-08-02 03:02:19 +02:00

18 lines
No EOL
475 B
Bash
Executable file

#!/bin/bash
set -e
echo "Full test of VibeTunnel npm package beta 15"
echo "==========================================="
# Change to web directory
cd "$(dirname "$0")"
# Build the Docker image
echo "Building Docker image..."
docker build -f Dockerfile.test-beta15-full -t vibetunnel-beta15-full-test .
# Run the test
echo -e "\nRunning full beta 15 package test..."
docker run --rm -p 4021:4021 vibetunnel-beta15-full-test
echo -e "\nFull beta 15 package test complete!"