quintodrome/server/nativeapi/native_api_suite_test.go

18 lines
337 B
Go
Raw Normal View History

2021-06-13 15:15:41 -08:00
package nativeapi
2020-04-06 11:37:15 -08:00
import (
"testing"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
2020-04-06 11:37:15 -08:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestNativeApi(t *testing.T) {
2020-04-06 11:37:15 -08:00
tests.Init(t, false)
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
2021-06-13 15:15:41 -08:00
RunSpecs(t, "Native RESTful API Suite")
2020-04-06 11:37:15 -08:00
}