mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-24 22:45:50 +00:00
15 lines
184 B
Go
15 lines
184 B
Go
package integration
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/kaspanet/kaspad/infrastructure/logger"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
logger.SetLogLevels("debug")
|
|
|
|
os.Exit(m.Run())
|
|
}
|