Skip to content

Commit

Permalink
fix(husky): fixed pre-push command
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnydanu committed Nov 2, 2024
1 parent ef2076d commit 0afb64c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ if [ $TEST_EXIT_STATUS -ne 0 ]; then
fi

# Start the local server in the background
pnpm dev
pnpm dev&
SERVER_PID=$!

# Wait for the server to start (adjust the sleep duration as needed)
sleep 10
sleep 5

# Run Playwright tests
pnpm test:e2e:dev
Expand Down

0 comments on commit 0afb64c

Please sign in to comment.