1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

Update FunctionsCustomServerTest.php

This commit is contained in:
Torsten Dittmann 2021-01-27 20:48:44 +01:00 committed by GitHub
parent f77c708c72
commit b16e5f716c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -642,6 +642,8 @@ class FunctionsCustomServerTest extends Scope
$executionId = $execution['body']['$id'] ?? '';
$this->assertEquals(201, $execution['headers']['status-code']);
sleep(30);
$executions = $this->client->call(Client::METHOD_GET, '/functions/'.$functionId.'/executions', array_merge([
'content-type' => 'application/json',
@ -760,4 +762,4 @@ class FunctionsCustomServerTest extends Scope
$this->assertEquals($executions['body']['executions'][0]['stdout'], '');
$this->assertEquals($executions['body']['executions'][0]['stderr'], '');
}
}
}