UNPKG

235 BJavaScriptView Raw
1const notifier = require('node-notifier');
2
3module.exports = errorCount => {
4 if (errorCount) {
5 notifier.notify({
6 title: 'Failed',
7 message: `${errorCount} ${errorCount === 1 ? 'test' : 'tests'} failed.`
8 });
9 }
10};