├── .env.example ├── .gitignore ├── .gitmodules ├── 01-first-steps └── README.md ├── 02-creating-with-api-requests └── README.md ├── 03-writing-tests-and-scripts └── README.md ├── 04-writing-tests-and-scripts-using-variables └── README.md ├── 05-advanced-assertions └── README.md ├── 06-automatically-running-tests └── README.md ├── 07-workflows-and-scenarios └── README.md ├── 08-mock-servers └── README.md ├── 10-authentication-authorization └── README.md ├── 11-misc └── README.md ├── LICENSE ├── README.md ├── jest.config.js ├── lint-staged.config.js ├── package.json └── tests ├── failing-api.test.js ├── passing-api.test.js └── trello-com.test.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/.gitmodules -------------------------------------------------------------------------------- /01-first-steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/01-first-steps/README.md -------------------------------------------------------------------------------- /02-creating-with-api-requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/02-creating-with-api-requests/README.md -------------------------------------------------------------------------------- /03-writing-tests-and-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/03-writing-tests-and-scripts/README.md -------------------------------------------------------------------------------- /04-writing-tests-and-scripts-using-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/04-writing-tests-and-scripts-using-variables/README.md -------------------------------------------------------------------------------- /05-advanced-assertions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/05-advanced-assertions/README.md -------------------------------------------------------------------------------- /06-automatically-running-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/06-automatically-running-tests/README.md -------------------------------------------------------------------------------- /07-workflows-and-scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/07-workflows-and-scenarios/README.md -------------------------------------------------------------------------------- /08-mock-servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/08-mock-servers/README.md -------------------------------------------------------------------------------- /10-authentication-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/10-authentication-authorization/README.md -------------------------------------------------------------------------------- /11-misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/11-misc/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/jest.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/package.json -------------------------------------------------------------------------------- /tests/failing-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/tests/failing-api.test.js -------------------------------------------------------------------------------- /tests/passing-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/tests/passing-api.test.js -------------------------------------------------------------------------------- /tests/trello-com.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larrybotha/postman-rest-api-testing/HEAD/tests/trello-com.test.js --------------------------------------------------------------------------------