run unit tests in CI

This commit is contained in:
Jesse de Wit
2023-08-12 21:23:16 +02:00
parent b406d8ea53
commit ecd98d0975
3 changed files with 22 additions and 1 deletions

View File

@@ -13,6 +13,10 @@ import (
var defaultTimeout time.Duration = time.Second * 120
func TestLspd(t *testing.T) {
if testing.Short() {
t.Skip()
return
}
testCases := allTestCases
runTests(t, testCases, "LND-lsp-CLN-client", lndLspFunc, clnClientFunc)
runTests(t, testCases, "LND-lsp-LND-client", legacyOnionLndLspFunc, lndClientFunc)