2020-04-06 11:37:15 -08:00
|
|
|
package app
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2021-02-06 17:46:35 -09:00
|
|
|
"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 TestApp(t *testing.T) {
|
|
|
|
|
tests.Init(t, false)
|
|
|
|
|
log.SetLevel(log.LevelCritical)
|
|
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
|
RunSpecs(t, "RESTful API Suite")
|
|
|
|
|
}
|