Hi,
I am trying to run 2 different spec in parallel.
One spec in Chrome and another spec in firefox.
I created two env i.e. chrome and firefox also.
But chrome is executing first and after completing the execution safari execution started. But not working in parallel.
Am I missing something ?
<executions>
<execution>
<id>run_on_chrome</id>
<phase>test</phase>
<configuration>
<env>chrome</env>
<inParallel>true</inParallel>
<nodes>2</nodes>
<specsDir>specs/functional</specsDir>
</configuration>
<goals>
<goal>execute</goal>
</goals>
</execution>
<execution>
<id>run_on_firefox</id>
<phase>test</phase>
<configuration>
<env>firefox</env>
<inParallel>true</inParallel>
<nodes>2</nodes>
<specsDir>specs/functional1</specsDir>
</configuration>
<goals>
<goal>execute</goal>
</goals>
</execution>
</executions>
Thanks,
Somnath