Skip to content

Files

Latest commit

952de63 · Aug 22, 2022

History

History
62 lines (52 loc) · 2.03 KB

README.md

File metadata and controls

62 lines (52 loc) · 2.03 KB

Demoney_Postman_API_Testing


Postman collection : https://www.getpostman.com/collections/c201b6d467421000d6da

IDE

postman


How to run this project in postman ?

Just Import Collection link of your postman

How to run this project in your device?

01 Clone this project
02 Open with any code editor
03 Give the following command , for help go to https://roadtosdet.com/step-by-step-testing-with-postman-part-2
04 only run collection json file you should following the command below
05 npm install/ npm i or yarn install
06 npx newman run .collection/collection.json
07 npm test

Reports

01 .Newman 01

02 .Newman 02

03 .Terminal view

04 .Postman interface


Git Command

For the very first time after installing github

git init
git remote add origin
git config user.name <YOUR_NAME> //to set the username
git config user.email //to set the email
git config user.name //to retrieve the username
git config user.email //to retrieve the email
git status
git add .
git commit -m 'upload'
git branch -M main
git push origin main

When uploading a new project

git init
git remote add origin
git status
git add .
git commit -m 'upload'
git branch -M main
git push origin main

When update something in an existing project

git status
git add .
git commit -m 'update'
git push origin main