mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-25 23:15:55 +00:00
15 lines
230 B
Go
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())
|
|
}
|