mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
16 lines
234 B
Go
16 lines
234 B
Go
package nodes
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils/testutils"
|
|
"testing"
|
|
)
|
|
|
|
func TestAPIStream_Start(t *testing.T) {
|
|
if !testutils.IsSingleTesting() {
|
|
return
|
|
}
|
|
|
|
apiStream := NewAPIStream()
|
|
apiStream.Start()
|
|
}
|