mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-04 04:11:14 +03:00
16 lines
271 B
Go
16 lines
271 B
Go
package engine
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cloudsonic/sonic-server/log"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestPersistence(t *testing.T) {
|
|
log.SetLevel(log.LevelCritical)
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Persistence Suite")
|
|
}
|