Files
EdgeNode/internal/nodes/node_test.go

12 lines
141 B
Go
Raw Normal View History

2020-07-21 11:18:47 +08:00
package nodes
import (
_ "github.com/iwind/TeaGo/bootstrap"
"testing"
)
func TestNode(t *testing.T) {
node := NewNode()
node.Start()
}