Add OpenAPI spec for new API, and wire up a new API handler

Based on Aura and JSONAPI
This commit is contained in:
Deluan 2023-03-18 20:09:41 -04:00 committed by Deluan
parent f5d97823e8
commit dcb5725642
16 changed files with 2660 additions and 46 deletions

View file

@ -0,0 +1,17 @@
package api
import (
"testing"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestApi(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelFatal)
RegisterFailHandler(Fail)
RunSpecs(t, "Navidrome JSON:API Suite")
}