navidrome/engine/engine_suite_test.go

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

18 lines
313 B
Go
Raw Normal View History

2020-01-15 23:49:09 +01:00
package engine
import (
"testing"
2020-01-24 01:44:08 +01:00
"github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/tests"
2020-01-15 23:49:09 +01:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
2020-01-16 03:52:50 +01:00
func TestEngine(t *testing.T) {
tests.Init(t, false)
2020-01-15 23:49:09 +01:00
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
2020-01-16 03:52:50 +01:00
RunSpecs(t, "Engine Suite")
2020-01-15 23:49:09 +01:00
}