photoprism/internal/forms/forms_test.go
2019-05-15 21:51:00 +02:00

15 lines
173 B
Go

package forms
import (
"os"
"testing"
log "github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
log.SetLevel(log.DebugLevel)
code := m.Run()
os.Exit(code)
}