Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
18 lines
310 B
Go
18 lines
310 B
Go
package cmd
|
|||
|
|||
import (
|
|||
"testing"
|
|||
|
|||
"github.com/navidrome/navidrome/log"
|
|||
"github.com/navidrome/navidrome/tests"
|
|||
. "github.com/onsi/ginkgo/v2"
|
|||
. "github.com/onsi/gomega"
|
|||
)
|
|||
|
|||
func TestCmd(t *testing.T) {
|
|||
tests.Init(t, false)
|
|||
log.SetLevel(log.LevelFatal)
|
|||
RegisterFailHandler(Fail)
|
|||
RunSpecs(t, "Cmd Suite")
|
|||
}
|