mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-26 13:39:49 +00:00
11d1f8fb0d
* feat: result aggregation in resume and enforce max page size * feat: add WithLogger option to wakunode (#184) * fix: rebase issues
21 lines
468 B
Go
21 lines
468 B
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/status-im/go-waku/tests"
|
|
"github.com/status-im/go-waku/waku/v2/node"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestWakuRpc(t *testing.T) {
|
|
options := node.WithWakuStore(false, false)
|
|
n, err := node.New(context.Background(), options)
|
|
require.NoError(t, err)
|
|
|
|
rpc := NewWakuRpc(n, "127.0.0.1", 8080, tests.Logger())
|
|
require.NotNil(t, rpc.server)
|
|
require.Equal(t, rpc.server.Addr, "127.0.0.1:8080")
|
|
}
|