We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f28880 commit cab8a8fCopy full SHA for cab8a8f
tests/Acceptance/PubNubContext.php
@@ -12,6 +12,8 @@ public function before(BeforeScenarioScope $scope): void
12
{
13
$ch = curl_init();
14
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
15
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
16
+
17
foreach ($scope->getScenario()->getTags() as $tag) {
18
if (0 === strpos($tag, 'contract')) {
19
list(, $contractName) = explode('=', $tag);
@@ -27,6 +29,8 @@ public function after(AfterScenarioScope $scope): void
27
29
28
30
31
32
33
34
35
36
curl_setopt($ch, CURLOPT_URL, 'http://localhost:8090/expect');
0 commit comments