quintodrome/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
304 B
Go
Raw Normal View History

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