I have been using Rest-Assured framework all the time for testing APIs with Java. But this time it was my project's demand to perform API testing in Javascript.
Being a newbie to JS, I googled for some tools and found SuperTest
.
To introduce SuperTest
, it is a high level abstraction of HTTP requests, making it perfect for testing APIs.
I decided to do a POC of this tool to understand it better, hence this project was created.
I thought of sharing this on github, so it helps others as well who want to learn more about this tool.
Checkout this link to learn more about SuperTest
You need to have the following installed in your machine:
- Node (Latest Version).
- npm(Latest Version).
mocha
framework is used for writing tests andchai
for assertions, following command should help to install the required npm packages:npm i -D -g supertest mocha chai mochawesome
- For running the tests, you need to type the command:
npm run test
. (Check Package.json for more details) - For generating the mochawesome report, run the command
npm run report
(Check Package.json for more details.) It will generate and export the report inmochawesome-report
folder from which you can open theindex.html
file to view the report.
-
I have covered,
GET
,POST
,PUT
,PATCH
andDELETE
requests. You will find the example code in the test folder of the repository. -
End to End scenarios have been added for the restful booker APIs. If you need to get into more details about how to write tests using supertest, mocha and chai?, this blog is all you need to refer and get started.
-
Mochawesome reporter is used to generate the reports and show summary of the tests. I found it quite useful report as it shows the test description alongwith the tests and the time taken to run the tests.
- Discuss your queries by writing to me @
mohammadfaisalkhatri@gmail.com
OR ping me on any of the social media sites using the below link:
- Contact me for 1:1 trainings/guidance for Software Testing, Mock Interviews, Test Automation tools queries, Mentoring and Coaching.