import { showError } from './showError.js' const errorreporter = () => { const report = { end: (stats) => { const { testFail } = stats showError(testFail) } } return report } export { errorreporter }