quintodrome/scanner/metadata/ffmpeg/ffmpeg_suite_test.go

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

18 lines
318 B
Go
Raw Normal View History

2021-07-24 05:53:17 -08:00
package ffmpeg
import (
"testing"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
2022-07-26 12:47:16 -08:00
. "github.com/onsi/ginkgo/v2"
2021-07-24 05:53:17 -08:00
. "github.com/onsi/gomega"
)
func TestFFMpeg(t *testing.T) {
tests.Init(t, true)
log.SetLevel(log.LevelFatal)
2021-07-24 05:53:17 -08:00
RegisterFailHandler(Fail)
RunSpecs(t, "FFMpeg Suite")
}