mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-06 22:26:47 +00:00
16 lines
246 B
Go
16 lines
246 B
Go
package txscript
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/kaspanet/kaspad/logs"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
// set log level to trace, so that logClosures passed to log.Tracef are covered
|
|
log.SetLevel(logs.LevelTrace)
|
|
|
|
os.Exit(m.Run())
|
|
}
|