Open
Description
Just trying to run my phpunit tests through Mink and Zombie driver. Here is my config
array(
'driver' => 'zombie',
// Defaults for this driver
'port' => 8124,
'driverOptions' => array(
'node_bin' => 'node',
'server_path' => null,
'threshold' => 2000000,
'node_modules_path' => '/Users/path to/node_modules/',
),
),
I have installed zombie locally with npm and exported NODE_PATH in my .zshrc
When I run my test I get following
PHPUnit 4.5.1 by Sebastian Bergmann and contributors.
E
Time: 4.12 seconds, Memory: 6.75Mb
There was 1 error:
1) BrandingHomeTest::testHomePage
RuntimeException: Server did not respond in time: () [Stopped]
/Users//vendor/behat/mink-zombie-driver/src/Behat/Mink/Driver/NodeJS/Server.php:399
/Users//vendor/behat/mink-zombie-driver/src/Behat/Mink/Driver/NodeJS/Server.php:300
/Users//vendor/behat/mink-zombie-driver/src/Behat/Mink/Driver/ZombieDriver.php:78
/Users/vendor/behat/mink/src/Session.php:70
/Users//vendor/aik099/phpunit-mink/library/aik099/PHPUnit/Session/IsolatedSessionStrategy.php:79
/Users/vendor/aik099/phpunit-mink/library/aik099/PHPUnit/BrowserTestCase.php:289
/Users/HomeTest.php:11
/Users/vendor/aik099/phpunit-mink/library/aik099/PHPUnit/BrowserTestCase.php:371
/Users/vendor/aik099/phpunit-mink/library/aik099/PHPUnit/BrowserTestCase.php:319
FAILURES!
Tests: 1, Assertions: 0, Errors: 1.
I am not sure if I am missing any config ?
Have someone tried that ?