mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
306 B
15 lines
306 B
5 years ago
|
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() {
|
||
|
uuid, _ := uuid.NewUUID()
|
||
|
RunID = uuid.String()
|
||
|
}
|