mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-25 15:06:07 +00:00
16 lines
236 B
Go
16 lines
236 B
Go
package integration
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/c4ei/YunSeokYeol/infrastructure/logger"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
logger.SetLogLevels(logger.LevelDebug)
|
|
logger.InitLogStdout(logger.LevelDebug)
|
|
|
|
os.Exit(m.Run())
|
|
}
|