JSTestDriver and Continuous Integration

I am trying to use JSTestDriver to automate my Javascript tests using Hudson as a continuous integration backend. I'm going to get Hudson to at least prepare a report on the test results, failing to build a failed test as the most desired result.

I did a quick search on the Internet and found that Hudson does not have a direct plug-in for JSTestDriver (it only has one for TeamCity). I was thinking of using Hudson to test javascript tests as an external job, but I have a feeling it is more complicated than required.

Does anyone have any experience / recommendations on the above scenario?

Thanks.

+5
source share
3 answers

Does the xUnit plugin include?

In general, Hudson testing plugins do not run tests - you create a script to run the tests yourself. Hudson then picks up the report that is being generated and displays it perfectly in the Hudson user interface.

+4
source

Found this article, which was recently published on this topic. Hudson seems to support JsTestDriver through its core features. You just need to know how to configure it.

http://cjohansen.no/en/javascript/javascript_continuous_integration_with_hudson_and_jstestdriver

+6
source

: hudson JUnit test output XML

Basically, jstestdriver generates you JUnit compatible results when you can use them in your CI system of your choice.

+1
source

All Articles