1'use strict'; 2 3module.exports = async function * customReporter() { 4 yield 'Going to throw an error\n'; 5 setImmediate(() => { 6 throw new Error('Reporting error'); 7 }); 8}; 9