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.
21 lines
No EOL
482 B
YAML
21 lines
No EOL
482 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
vibetunnel-npm-beta:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: vibetunnel-npm-beta-test
|
|
environment:
|
|
- NODE_ENV=development
|
|
- VIBETUNNEL_NO_AUTH=true
|
|
volumes:
|
|
# Mount source code for development
|
|
- ./src:/app/src
|
|
- ./public:/app/public
|
|
# Exclude node_modules
|
|
- /app/node_modules
|
|
- /app/node-pty/node_modules
|
|
ports:
|
|
- "4021:4020"
|
|
command: pnpm run dev |