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

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())
}