navidrome/model/criteria/criteria_suite_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
301 B
Go
Raw Normal View History

2021-10-22 00:03:46 +02:00
package criteria
import (
"testing"
_ "github.com/mattn/go-sqlite3"
"github.com/navidrome/navidrome/log"
2022-07-26 22:47:16 +02:00
. "github.com/onsi/ginkgo/v2"
2021-10-22 00:03:46 +02:00
"github.com/onsi/gomega"
)
func TestCriteria(t *testing.T) {
log.SetLevel(log.LevelFatal)
2021-10-22 00:03:46 +02:00
gomega.RegisterFailHandler(Fail)
RunSpecs(t, "Criteria Suite")
}