util.go 282 B

12345678910111213
  1. package framework
  2. import (
  3. "github.com/google/uuid"
  4. )
  5. // RunID is a unique identifier of the e2e run.
  6. // Beware that this ID is not the same for all tests in the e2e run, because each Ginkgo node creates it separately.
  7. var RunID string
  8. func init() {
  9. RunID = uuid.NewString()
  10. }