mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-08 03:00:27 +08:00
15 lines
300 B
Go
15 lines
300 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
|
|
|
package fsutils_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
fsutils "github.com/TeaOSLab/EdgeNode/internal/utils/fs"
|
|
)
|
|
|
|
func TestWaitLoad(t *testing.T) {
|
|
fsutils.WaitLoad(100, 5, 1*time.Minute)
|
|
}
|