mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
- 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.
18 lines
No EOL
475 B
Bash
Executable file
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!" |