Gulp -notify SSH?

If you use gulp-notifylocally, you can use it to notify you on your desktop of various things, such as missed / passed unit tests or something else:

.pipe(notify({
    title: 'PHPUnit Passed',
    message: 'All tests passed!'
}));

If you access the remote server via SSH and run the tests this way (not locally), is it possible to configure gulp-notifyin some way to send notifications to your desktop?

+4
source share

All Articles