This commit is contained in:
Administrator
2025-11-17 20:45:05 +01:00
parent c80fff061c
commit 7694811784
45 changed files with 917233 additions and 0 deletions

17
run_tests.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
# Run decoder tests in Docker container
echo "=== Running MEV Bot V2 Decoder Tests ==="
echo ""
cd /docker/mev-beta
# Run tests using golang container
podman run --rm \
-v /docker/mev-beta:/build:Z \
-w /build \
golang:1.21-alpine \
sh -c "go mod download && go test -v ./pkg/sequencer/... -run TestIsSwapTransaction"
echo ""
echo "=== Test Run Complete ==="