I'm using linusnorton/grunt-parallel-behat to run up to 5 Behat tests at once, which is great for cutting down the amount of time my tests run. But once I wrote a second feature that used @javascript, I got the following error:
Server process has been terminated: (8) [
events.js:72
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE
at errnoException (net.js:904:11)
at Server._listen2 (net.js:1042:14)
at listen (net.js:1064:10)
at net.js:1146:9
at Object._onImmediate (node_modules/zombie/lib/zombie/dns_mask.js:69:16)
at processImmediate [as _immediateCallback] (timers.js:345:15)
] (RuntimeException)
I don't know if this is a limitation of zombie.js, Mink, or Behat, but I can't get away with just one @javascript test in my suite.
I'm using linusnorton/grunt-parallel-behat to run up to 5 Behat tests at once, which is great for cutting down the amount of time my tests run. But once I wrote a second feature that used
@javascript, I got the following error:I don't know if this is a limitation of zombie.js, Mink, or Behat, but I can't get away with just one
@javascripttest in my suite.