mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Add OpenAPI spec for new API, and wire up a new API handler
Based on Aura and JSONAPI
This commit is contained in:
parent
f5d97823e8
commit
dcb5725642
16 changed files with 2660 additions and 46 deletions
17
server/api/api_suite_test.go
Normal file
17
server/api/api_suite_test.go
Normal 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")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue