2021-02-07 19:26:05 -09:00
|
|
|
package agents
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/navidrome/navidrome/log"
|
|
|
|
|
"github.com/navidrome/navidrome/tests"
|
2022-07-26 12:47:16 -08:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
2021-02-07 19:26:05 -09:00
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestAgents(t *testing.T) {
|
|
|
|
|
tests.Init(t, false)
|
2022-12-21 10:53:36 -09:00
|
|
|
log.SetLevel(log.LevelFatal)
|
2021-02-07 19:26:05 -09:00
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
|
RunSpecs(t, "Agents Test Suite")
|
|
|
|
|
}
|