I'm on OSX, and have a grunt watch file with jshint & protractor tests. I get growl notifications from the jshint messages, but none from protractor failures. I would prefer to get a visible popup notification rather than having to inspect the terminal output.
Any suggestions?
The packages used are:
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-http-server' );
grunt.loadNpmTasks( 'grunt-protractor-webdriver' );
grunt.loadNpmTasks( 'grunt-protractor-runner' );
grunt.loadNpmTasks( 'grunt-notify' );
grunt.task.run( 'http-server:test' );
grunt.task.run( 'protractor_webdriver:test' );
grunt.task.run( 'notify_hooks' );