navidrome/scanner/scanner_suite_test.go

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

18 lines
321 B
Go
Raw Normal View History

2020-01-16 22:53:48 +01:00
package scanner
import (
"testing"
2020-01-24 01:44:08 +01:00
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
2020-01-16 22:53:48 +01:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestScanner(t *testing.T) {
tests.Init(t, true)
2020-01-16 22:53:48 +01:00
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Scanner Suite")
}