15 lines
210 B
Bash
Executable File
15 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# test.sh - Run tests for the MEV bot
|
|
|
|
echo "Running tests..."
|
|
|
|
# Run all tests
|
|
go test -v ./...
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "All tests passed!"
|
|
else
|
|
echo "Some tests failed!"
|
|
exit 1
|
|
fi |