#!/usr/bin/env bash set -euo pipefail # test.sh - Run tests for the MEV bot # Executes all tests in the project with verbose output echo "Running tests..." # Run all tests if go test -v ./...; then echo "All tests passed!" exit 0 else echo "Some tests failed!" exit 1 fi