Files
navidrome/server/nativeapi/native_api_suite_test.go

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

18 lines
337 B
Go
Raw Permalink Normal View History

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