channeldb/test: test with postgres

This commit is contained in:
Joost Jager
2021-07-16 18:07:30 +02:00
parent 7c048efa21
commit d997bbf6b3
13 changed files with 152 additions and 3 deletions

11
sweep/setup_test.go Normal file
View File

@ -0,0 +1,11 @@
package sweep
import (
"testing"
"github.com/lightningnetwork/lnd/kvdb"
)
func TestMain(m *testing.M) {
kvdb.RunTests(m)
}