We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc55863 commit 9b488d9Copy full SHA for 9b488d9
src/Extension/Phiremock.php
@@ -25,16 +25,21 @@
25
*/
26
class Phiremock extends CodeceptionExtension
27
{
28
+ /**
29
+ * @var array
30
+ */
31
public static $events = [];
32
33
34
35
36
protected $config = [
37
'listen' => '0.0.0.0:8086',
38
'debug' => false,
39
'startDelay' => 0
40
];
41
42
/**
- *
43
* @var PhiremockProcess
44
45
private $process;
@@ -51,7 +56,7 @@ public function __construct(
51
56
array $options,
52
57
PhiremockProcess $process = null
53
58
) {
54
- $this->config['bin_path'] = Config::projectDir() . '../vendor/bin';
59
+ $this->config['bin_path'] = Config::projectDir() . '../vendor/bin/phiremock';
55
60
$this->config['logs_path'] = Config::logDir();
61
62
parent::__construct($config, $options);
0 commit comments