Add test to Event

This commit is contained in:
Deluan
2021-02-04 12:43:46 -05:00
parent 7adacbac0d
commit c7af3b8256
2 changed files with 36 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package events
import (
"testing"
"github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/tests"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestEvents(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Events Suite")
}