2020-01-19 14:21:44 -09:00
|
|
|
package subsonic
|
2020-01-09 11:56:44 -09:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2020-01-23 15:44:08 -09:00
|
|
|
"github.com/navidrome/navidrome/log"
|
2025-04-30 04:10:19 -08:00
|
|
|
"github.com/navidrome/navidrome/tests"
|
2022-07-26 12:47:16 -08:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
2020-01-09 11:56:44 -09:00
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestSubsonicApi(t *testing.T) {
|
2025-04-30 04:10:19 -08:00
|
|
|
tests.Init(t, false)
|
2022-12-21 10:53:36 -09:00
|
|
|
log.SetLevel(log.LevelFatal)
|
2020-01-09 11:56:44 -09:00
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
|
RunSpecs(t, "Subsonic API Suite")
|
|
|
|
|
}
|