├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── issue-report.yml └── workflows │ ├── greeting.yml │ ├── locker.yml │ └── main.yml ├── .gitignore ├── .npmignore ├── .snyk ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── htmlextra.js ├── docker ├── Dockerfile └── README.md ├── examples ├── Default_Report.gif ├── NewmanHtmlextraReporterLogo.png ├── Restful_Booker_Collection.json └── Restful_Booker_Environment.json ├── index.js ├── lib ├── dashboard-template.hbs ├── index.js ├── only-failures-dashboard.hbs └── util.js ├── npm ├── test-all.js ├── test-integration.js ├── test-lint.js └── test-system.js ├── package.json └── test ├── .eslintrc ├── integration ├── cli.test.js └── library.test.js ├── requests ├── collection_with_name_containing_invalid_characters │ ├── README.md │ ├── invalid1.postman_collection.json │ ├── invalid10.postman_collection.json │ ├── invalid2.postman_collection.json │ ├── invalid3.postman_collection.json │ ├── invalid4.postman_collection.json │ ├── invalid5.postman_collection.json │ ├── invalid6.postman_collection.json │ ├── invalid8.postman_collection.json │ ├── invalid9.postman_collection.json │ ├── valid1.postman_collection.json │ ├── valid2.postman_collection.json │ ├── valid3.postman_collection.json │ ├── valid4.postman_collection.json │ ├── valid5.postman_collection.json │ ├── valid6.postman_collection.json │ └── valid7.postman_collection.json ├── simple-env.json ├── simple-failing-request.json ├── simple-get-request-with-headers.json ├── simple-get-request-with-log-messages.json ├── simple-get-request.json ├── simple-post-request-with-formdata.json ├── simple-post-request-with-urlencoded.json ├── simple-request-with-all-test-types.json ├── simple-request-with-env.json ├── simple-skipped-folder.json └── simple-skipped-request.json └── system └── repository.test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.github/ISSUE_TEMPLATE/issue-report.yml -------------------------------------------------------------------------------- /.github/workflows/greeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.github/workflows/greeting.yml -------------------------------------------------------------------------------- /.github/workflows/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.github/workflows/locker.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.npmignore -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/.snyk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/README.md -------------------------------------------------------------------------------- /bin/htmlextra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/bin/htmlextra.js -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/docker/README.md -------------------------------------------------------------------------------- /examples/Default_Report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/examples/Default_Report.gif -------------------------------------------------------------------------------- /examples/NewmanHtmlextraReporterLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/examples/NewmanHtmlextraReporterLogo.png -------------------------------------------------------------------------------- /examples/Restful_Booker_Collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/examples/Restful_Booker_Collection.json -------------------------------------------------------------------------------- /examples/Restful_Booker_Environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/examples/Restful_Booker_Environment.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/index.js -------------------------------------------------------------------------------- /lib/dashboard-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/lib/dashboard-template.hbs -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/only-failures-dashboard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/lib/only-failures-dashboard.hbs -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/lib/util.js -------------------------------------------------------------------------------- /npm/test-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/npm/test-all.js -------------------------------------------------------------------------------- /npm/test-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/npm/test-integration.js -------------------------------------------------------------------------------- /npm/test-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/npm/test-lint.js -------------------------------------------------------------------------------- /npm/test-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/npm/test-system.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/integration/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/integration/cli.test.js -------------------------------------------------------------------------------- /test/integration/library.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/integration/library.test.js -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/README.md -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid1.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid1.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid10.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid10.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid2.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid2.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid3.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid3.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid4.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid4.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid5.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid5.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid6.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid6.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid8.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid8.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/invalid9.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/invalid9.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid1.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid1.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid2.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid2.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid3.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid3.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid4.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid4.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid5.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid5.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid6.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid6.postman_collection.json -------------------------------------------------------------------------------- /test/requests/collection_with_name_containing_invalid_characters/valid7.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/collection_with_name_containing_invalid_characters/valid7.postman_collection.json -------------------------------------------------------------------------------- /test/requests/simple-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-env.json -------------------------------------------------------------------------------- /test/requests/simple-failing-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-failing-request.json -------------------------------------------------------------------------------- /test/requests/simple-get-request-with-headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-get-request-with-headers.json -------------------------------------------------------------------------------- /test/requests/simple-get-request-with-log-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-get-request-with-log-messages.json -------------------------------------------------------------------------------- /test/requests/simple-get-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-get-request.json -------------------------------------------------------------------------------- /test/requests/simple-post-request-with-formdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-post-request-with-formdata.json -------------------------------------------------------------------------------- /test/requests/simple-post-request-with-urlencoded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-post-request-with-urlencoded.json -------------------------------------------------------------------------------- /test/requests/simple-request-with-all-test-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-request-with-all-test-types.json -------------------------------------------------------------------------------- /test/requests/simple-request-with-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-request-with-env.json -------------------------------------------------------------------------------- /test/requests/simple-skipped-folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-skipped-folder.json -------------------------------------------------------------------------------- /test/requests/simple-skipped-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/requests/simple-skipped-request.json -------------------------------------------------------------------------------- /test/system/repository.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyDainton/newman-reporter-htmlextra/HEAD/test/system/repository.test.js --------------------------------------------------------------------------------