#!/bin/bash # # Teardown script for integration tests # Run this after tests to clean up services # # Edit this file to match your project's needs. # echo "==========================================" echo "Integration Tests Teardown" echo "==========================================" echo "" # TODO: Add commands to stop services # Example: # echo "Stopping backend server..." # pkill -f "node.*backend" # # echo "Stopping database..." # docker compose down echo "Teardown complete." echo ""