itest: skip interceptor tests

This commit is contained in:
Oliver Gugger 2024-07-19 19:27:14 +02:00
parent eadbb53e56
commit ef33706aa6
No known key found for this signature in database
GPG key ID: 8E4256593F177720
2 changed files with 8 additions and 0 deletions

View file

@ -587,6 +587,10 @@ type interceptorTestScenario struct {
func newInterceptorTestScenario(
ht *lntest.HarnessTest) *interceptorTestScenario {
if isLitd {
ht.Skipf("skipping forward interceptor tests for litd")
}
alice, bob := ht.Alice, ht.Bob
carol := ht.NewNode("carol", nil)
dave := ht.NewNode("dave", nil)

View file

@ -17,6 +17,10 @@ import (
// testInvoiceHtlcModifierBasic tests the basic functionality of the invoice
// HTLC modifier RPC server.
func testInvoiceHtlcModifierBasic(ht *lntest.HarnessTest) {
if isLitd {
ht.Skipf("skipping HTLC modifier tests for litd")
}
ts := newAcceptorTestScenario(ht)
alice, bob, carol := ts.alice, ts.bob, ts.carol