Framework Mode - Using Chai assertion library
Folder Structure
postman-project/ ├── collections/ │ └── api-requests.postman_collection.json ├── environments/ │ ├── dev.postman_environment.json │ └── prod.postman_environment.json ├── tests/ │ ├── auth-tests.js │ └── user-tests.js ├── utils/ │ └── helpers.js ├── config/ │ └── config.json └── README.md
This structure organizes Postman collections, environment files, test scripts using Chai assertions, utility helpers, and configuration.