13 lines
149 B
Go
13 lines
149 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestGetAllNodeConfig(t *testing.T) {
|
||
|
payload := GetAllNodeConfig()
|
||
|
|
||
|
fmt.Println("{}", payload)
|
||
|
}
|