navidrome/scanner/metadata/metadata_suite_test.go

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

18 lines
324 B
Go
Raw Normal View History

2020-09-06 03:29:44 +02:00
package metadata
import (
"testing"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
2022-07-26 22:47:16 +02:00
. "github.com/onsi/ginkgo/v2"
2020-09-06 03:29:44 +02:00
. "github.com/onsi/gomega"
)
2021-07-24 15:53:17 +02:00
func TestMetadata(t *testing.T) {
2020-09-06 03:29:44 +02:00
tests.Init(t, true)
log.SetLevel(log.LevelFatal)
2020-09-06 03:29:44 +02:00
RegisterFailHandler(Fail)
RunSpecs(t, "Metadata Suite")
}