navidrome/server/events/events_suite_test.go

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

18 lines
319 B
Go
Raw Permalink Normal View History

2021-02-04 18:43:46 +01:00
package events
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"
2021-02-04 18:43:46 +01:00
. "github.com/onsi/gomega"
)
func TestEvents(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelFatal)
2021-02-04 18:43:46 +01:00
RegisterFailHandler(Fail)
RunSpecs(t, "Events Suite")
}