mirror of https://github.com/nodejs/node.git
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = async function * customReporter() {
|
||
|
yield 'Going to throw an error\n';
|
||
|
throw new Error('Reporting error');
|
||
|
};
|