mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
14 lines
282 B
Go
14 lines
282 B
Go
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() {
|
|
RunID = uuid.NewString()
|
|
}
|