mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-10 12:05:53 +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
427 B
Bash
Executable file
18 lines
No EOL
427 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Testing 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 -t vibetunnel-beta15-test .
|
|
|
|
# Run the test
|
|
echo -e "\nRunning beta 15 package test..."
|
|
docker run --rm vibetunnel-beta15-test
|
|
|
|
echo -e "\nBeta 15 package test complete!" |