DEV Community

Cover image for Jenkins & JUnit Integration with the API Tests
Dilpreet Johal
Dilpreet Johal

Posted on

Jenkins & JUnit Integration with the API Tests

In this post, we'll take a look at how to integrate API tests with Jenkins as well as add JUnit reporting with it.

Installation / Setup

  • You can check out this video to install Jenkins locally
  • Publish API tests to GitHub

Setup Test Job

  • Create a new freestyle test job
  • Add the necessary Source Code Management details (example - repository URL and Jenkins credentials)
  • In the build step (choose either Windows batch command or shell command), add the steps you use to run your tests locally. For example -
npm install // to install all the packages
npm test // to run your tests
Enter fullscreen mode Exit fullscreen mode
  • In the post-build step, choose the JUnit report option and add your report path, example - test*.xml
  • Save changes and Build the project

You should see a successful build as well as JUnit reporting along with it, similar to this:

Alt Text

There you go, now you have Jenkins as well as JUnit reporting setup for your API tests πŸ™Œ


Check out this video to see how to integrate Jenkins and JUnit reporting with the API tests we have created so far as well as how to store environment variable in Jenkins:

You can also clone the GitHub repo to access this code


To learn more about API testing, check out my free tutorial series here -

https://www.youtube.com/watch?v=ZSVw3TyZur4&list=PL6AdzyjjD5HDR2kNRU2dA1C8ydXRAaaBV&ab_channel=AutomationBro


I hope this post helped you out, let me know if you have any questions in the comments below!

Happy testing! πŸ˜„

...

Subscribe to my YouTube channel
Support my work - https://www.buymeacoffee.com/automationbro
Follow @automationbro on Twitter

Top comments (0)