Skip to content

Instantly share code, notes, and snippets.

@kavioshanaiesecer
Last active June 22, 2021 17:38
Show Gist options
  • Save kavioshanaiesecer/f9e3ff14d9bd9f19fdb59b11da323195 to your computer and use it in GitHub Desktop.
Save kavioshanaiesecer/f9e3ff14d9bd9f19fdb59b11da323195 to your computer and use it in GitHub Desktop.
Event Handling and Extract Emitted Data
newman.run({
collection: require('./COLLECTION_NAME.json'),
reporters: 'cli',
iterationData: './DATA_CSV_FILE_NAME.csv'
}).on('beforeDone', (error, data) => {
if (error) {
console.log(error);
}
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment