quintodrome/scanner/scanner_suite_test.go

17 lines
286 B
Go
Raw Normal View History

2020-01-16 12:53:48 -09:00
package scanner
import (
"testing"
2020-01-23 15:44:08 -09:00
"github.com/deluan/navidrome/log"
2020-01-16 12:53:48 -09:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
// TODO Fix OS dependencies
func xTestScanner(t *testing.T) {
2020-01-16 12:53:48 -09:00
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Scanner Suite")
}