Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 1, 2020 05:04 pm GMT

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 packagesnpm 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


Original Link: https://dev.to/automationbro/jenkins-junit-integration-with-the-api-tests-4oaf

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To