mirror of
https://github.com/matrix-org/sliding-sync.git
synced 2025-03-10 13:37:11 +00:00
17 lines
317 B
Go
17 lines
317 B
Go
package caches_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/matrix-org/sliding-sync/testutils"
|
|
)
|
|
|
|
var postgresConnectionString = "user=xxxxx dbname=syncv3_test sslmode=disable"
|
|
|
|
func TestMain(m *testing.M) {
|
|
postgresConnectionString = testutils.PrepareDBConnectionString()
|
|
exitCode := m.Run()
|
|
os.Exit(exitCode)
|
|
}
|