Skip to content

Commit

Permalink
test - increase values
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamacedo86 committed Sep 11, 2024
1 parent 594ce4f commit c236f20
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 14 deletions.
Empty file added :
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})
SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)
// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)
// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
9 changes: 7 additions & 2 deletions testdata/project-v4-multigroup/test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
9 changes: 7 additions & 2 deletions testdata/project-v4-with-plugins/test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down
9 changes: 7 additions & 2 deletions testdata/project-v4/test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ var _ = Describe("Manager", Ordered, func() {
_, _ = utils.Run(cmd)
})

SetDefaultEventuallyTimeout(2 * time.Minute)
SetDefaultEventuallyPollingInterval(time.Second)
// SetDefaultEventuallyTimeout sets the maximum amount of time that
// Eventually will keep retrying the condition before it fails
SetDefaultEventuallyTimeout(5 * time.Minute)

// SetDefaultEventuallyPollingInterval sets how frequently Eventually
// should poll (or retry) the condition
SetDefaultEventuallyPollingInterval(5 * time.Second)

// The Context block contains the actual tests that validate the manager's behavior.
Context("Manager", func() {
Expand Down

0 comments on commit c236f20

Please sign in to comment.