Files
waf-platform/EdgeAdmin/internal/tasks/task_sync_cluster_test.go
2026-02-04 20:27:13 +08:00

13 lines
179 B
Go

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