Update module name to github.com/fraktal/mev-beta and fix channel closing issues in pipeline stages

This commit is contained in:
Krypto Kajun
2025-09-12 19:08:38 -05:00
parent fbb85e529a
commit 1113d82499
31 changed files with 3359 additions and 210 deletions

15
test/suite_test.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"testing"
)
// Test all packages
func TestAllPackages(t *testing.T) {
// This is a placeholder test that will run all package tests
// when using go test ./...
}
// Example of how to run tests with coverage:
// go test -coverprofile=coverage.out ./...
// go tool cover -html=coverage.out -o coverage.html