From 0947490cddcd73e32721796a825ebedc5494597c Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Fri, 1 Jan 2021 11:56:53 +0200 Subject: [PATCH] Updated functions waiting times --- tests/e2e/Services/Functions/FunctionsCustomServerTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php index a319f6ae27..5a8c1c89bc 100644 --- a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php +++ b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php @@ -455,6 +455,8 @@ class FunctionsCustomServerTest extends Scope public function testENVS():array { + sleep(20); + /** * Test for SUCCESS */ @@ -591,7 +593,7 @@ class FunctionsCustomServerTest extends Scope $executionId = $execution['body']['$id'] ?? ''; $this->assertEquals(201, $execution['headers']['status-code']); - sleep(15); + sleep(5); $executions = $this->client->call(Client::METHOD_GET, '/functions/'.$functionId.'/executions', array_merge([ 'content-type' => 'application/json',