mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
15 lines
269 B
Go
15 lines
269 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cloudsonic/sonic-server/log"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestSubsonicApi(t *testing.T) {
|
|
log.SetLevel(log.LevelCritical)
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Subsonic API Suite")
|
|
}
|