diff --git a/acceptanceTests/extensions_test.go b/acceptanceTests/extensions_test.go index db9bea554..d42b8d205 100644 --- a/acceptanceTests/extensions_test.go +++ b/acceptanceTests/extensions_test.go @@ -103,7 +103,6 @@ func TestRedis(t *testing.T) { } func TestAmqp(t *testing.T) { - t.Skip("Invalid test. Not stable") if testing.Short() { t.Skip("ignored acceptance test") } @@ -156,7 +155,7 @@ func TestAmqp(t *testing.T) { defer conn.Close() // Temporary fix for missing amqp entries - time.Sleep(5 * time.Second) + time.Sleep(10 * time.Second) for i := 0; i < defaultEntriesCount/5; i++ { ch, err := conn.Channel() diff --git a/acceptanceTests/testsUtils.go b/acceptanceTests/testsUtils.go index 4c790e1a3..c7b5734f2 100644 --- a/acceptanceTests/testsUtils.go +++ b/acceptanceTests/testsUtils.go @@ -150,9 +150,10 @@ func runCypressTests(t *testing.T, cypressRunCmd string) { t.Logf("running command: %v", cypressCmd.String()) out, err := cypressCmd.Output() if err != nil { - t.Errorf("%s", out) + t.Errorf("error running cypress, error: %v", err) return } + t.Logf("%s", out) }