photoprism/internal/form/form_test.go

15 lines
172 B
Go
Raw Normal View History

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