navidrome/core/agents/agents_suite_test.go

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

18 lines
324 B
Go
Raw Normal View History

2021-02-08 05:26:05 +01:00
package agents
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-08 05:26:05 +01:00
. "github.com/onsi/gomega"
)
func TestAgents(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelFatal)
2021-02-08 05:26:05 +01:00
RegisterFailHandler(Fail)
RunSpecs(t, "Agents Test Suite")
}