Files
EdgeAdmin/internal/tasks/task_sync_cluster_test.go

13 lines
179 B
Go
Raw Permalink Normal View History

package tasks
import "testing"
func TestSyncClusterTask_loop(t *testing.T) {
task := NewSyncClusterTask()
err := task.loop()
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}