github.com/celestiaorg/celestia-node@v0.15.0-beta.1/nodebuilder/rpc/defaults_test.go (about)

     1  package rpc
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestServerDefaultConstants(t *testing.T) {
    10  	assert.Equal(t, "localhost", defaultBindAddress)
    11  	assert.Equal(t, "26658", defaultPort)
    12  }