mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 13:00:10 +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())
|
|
}
|