mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
16 lines
304 B
Go
16 lines
304 B
Go
package criteria
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
"github.com/navidrome/navidrome/log"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestCriteria(t *testing.T) {
|
|
log.SetLevel(log.LevelCritical)
|
|
gomega.RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Criteria Suite")
|
|
}
|