Complete the code to run a Postman collection with the default CLI reporter.
newman run collection.json --reporters [1]The cli reporter is the default reporter that outputs results directly in the command line interface.
Complete the code to generate an HTML report after running a Postman collection.
newman run collection.json --reporters [1]The html reporter generates a detailed HTML report file showing the test results in a browser-friendly format.
Fix the error in the command to generate a JUnit XML report.
newman run collection.json --reporters [1]The junit reporter outputs test results in JUnit XML format, which is useful for CI tools.
Fill both blanks to run a collection with CLI and HTML reporters together.
newman run collection.json --reporters [1],[2]
Using both cli and html reporters together shows results in the terminal and generates an HTML file.
Fill all three blanks to run a collection with CLI, HTML, and JUnit reporters.
newman run collection.json --reporters [1],[2],[3]
Combining cli, html, and junit reporters provides terminal output, an HTML report, and a JUnit XML report.