navidrome/model/criteria/criteria_suite_test.go

19 lines
362 B
Go

package criteria
import (
"testing"
_ "github.com/mattn/go-sqlite3"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
. "github.com/onsi/ginkgo"
"github.com/onsi/gomega"
)
func TestCriteria(t *testing.T) {
tests.Init(t, true)
log.SetLevel(log.LevelCritical)
gomega.RegisterFailHandler(Fail)
RunSpecs(t, "Criteria Suite")
}