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