Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,14 @@
</execution>
</executions>
<configuration>
<skipJasmineTests>${skipTests}</skipJasmineTests>
<!-- No explicit skipJasmineTests element: the plugin already
binds skipTests, maven.test.skip and skipJasmineTests to the
matching command-line properties and skips when any is true.
Setting the element here would override those bindings, so
-DskipJasmineTests would be ignored. Omitting it lets
-DskipTests skip jasmine (as before) while -DskipJasmineTests=true
skips only the browser-driven specs (e.g. on a headless box
with no PhantomJS) without disabling the module's other tests. -->
<webDriverClassName>org.openqa.selenium.phantomjs.PhantomJSDriver</webDriverClassName>
<webDriverCapabilities>
<capability>
Expand Down
Loading