navidrome/server/subsonic/api_suite_test.go

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

16 lines
273 B
Go
Raw Normal View History

package subsonic
2020-01-09 21:56:44 +01:00
import (
"testing"
2020-01-24 01:44:08 +01:00
"github.com/navidrome/navidrome/log"
2022-07-26 22:47:16 +02:00
. "github.com/onsi/ginkgo/v2"
2020-01-09 21:56:44 +01:00
. "github.com/onsi/gomega"
)
func TestSubsonicApi(t *testing.T) {
2020-01-10 03:58:03 +01:00
log.SetLevel(log.LevelCritical)
2020-01-09 21:56:44 +01:00
RegisterFailHandler(Fail)
RunSpecs(t, "Subsonic API Suite")
}