Files
ctrld/cmd/cli/main_test.go
2023-08-15 18:22:38 +07:00

18 lines
209 B
Go

package cli
import (
"os"
"strings"
"testing"
"github.com/rs/zerolog"
)
var logOutput strings.Builder
func TestMain(m *testing.M) {
l := zerolog.New(&logOutput)
mainLog.Store(&l)
os.Exit(m.Run())
}