1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-17 04:49:00 +00:00

14 lines
282 B
Go
Raw Normal View History

2020-06-02 22:48:55 +08:00
package framework
import (
"github.com/google/uuid"
)
// RunID is a unique identifier of the e2e run.
// Beware that this ID is not the same for all tests in the e2e run, because each Ginkgo node creates it separately.
var RunID string
func init() {
2021-06-18 16:48:36 +08:00
RunID = uuid.NewString()
2020-06-02 22:48:55 +08:00
}