-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunCollection.js
25 lines (23 loc) · 1.07 KB
/
runCollection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const newman = require('newman'); // Require Newman in your script
// Define the collection and environment file paths
const collectionPath = 'C:/QA/API-Security/Collections/TTT-Meetup.postman_collection.json'; // Replace with your Postman collection JSON file
const environmentPath = 'C:/QA/API-Security/Collections/Training.postman_environment.json'; // Replace with your Postman environment JSON file (optional)
// Run the collection using Newman
newman.run({
collection: require(collectionPath),
environment: require(environmentPath), // Optional
reporters: 'cli', // Output results in the CLI
}, (err, summary) => {
if (err) {
console.error('Error running Newman collection:', err);
process.exit(1); // Exit with failure code
} else {
console.log('Collection run complete!');
if (summary.run.failures.length) {
console.error('Some requests failed:', summary.run.failures);
process.exit(1); // Exit with failure code
} else {
console.log('All requests passed successfully!');
}
}
});