kaspad/testing/integration/main_test.go
2023-08-23 15:11:28 +09:00

15 lines
230 B
Go

package integration
import (
"github.com/c4ei/kaspad/infrastructure/logger"
"os"
"testing"
)
func TestMain(m *testing.M) {
logger.SetLogLevels(logger.LevelDebug)
logger.InitLogStdout(logger.LevelDebug)
os.Exit(m.Run())
}