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