photoprism/internal/form/search_test.go
Michael Mayer c31470dafb Initial code for new Places UI
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-15 04:04:33 +01:00

15 lines
172 B
Go

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)
}