aboutsummaryrefslogtreecommitdiff
path: root/node_modules/growl/test.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-27 17:36:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-27 17:36:13 +0200
commit5f466137ad6ac596600e3ff53c9b786815398445 (patch)
treef914c221874f0b16bf3def7ac01d59d1a99a3b0b /node_modules/growl/test.js
parentc9f5ac8e763eda19aa0564179300cfff76785435 (diff)
node_modules, clean up package.json
Diffstat (limited to 'node_modules/growl/test.js')
-rw-r--r--node_modules/growl/test.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/node_modules/growl/test.js b/node_modules/growl/test.js
deleted file mode 100644
index 9bb09d9d3..000000000
--- a/node_modules/growl/test.js
+++ /dev/null
@@ -1,31 +0,0 @@
-
-var growl = require('./lib/growl')
-
-growl('Support sound notifications', {title: 'Make a sound', sound: 'purr'});
-growl('You have mail!')
-growl('5 new messages', { sticky: true })
-growl('5 new emails', { title: 'Email Client', image: 'Safari', sticky: true })
-growl('Message with title', { title: 'Title'})
-growl('Set priority', { priority: 2 })
-growl('Show Safari icon', { image: 'Safari' })
-growl('Show icon', { image: 'path/to/icon.icns' })
-growl('Show image', { image: 'path/to/my.image.png' })
-growl('Show png filesystem icon', { image: 'png' })
-growl('Show pdf filesystem icon', { image: 'article.pdf' })
-growl('Show pdf filesystem icon', { image: 'article.pdf' }, function(){
- console.log('callback');
-})
-growl('Show pdf filesystem icon', { title: 'Use show()', image: 'article.pdf' })
-growl('here \' are \n some \\ characters that " need escaping', {}, function(error, stdout, stderr) {
- if (error !== null) throw new Error('escaping failed:\n' + stdout + stderr);
-})
-growl('Allow custom notifiers', { exec: 'echo XXX %s' }, function(error, stdout, stderr) {
- console.log(stdout);
-})
-growl('Allow custom notifiers', { title: 'test', exec: 'echo YYY' }, function(error, stdout, stderr) {
- console.log(stdout);
-})
-growl('Allow custom notifiers', { title: 'test', exec: 'echo ZZZ %s' }, function(error, stdout, stderr) {
- console.log(stdout);
-})
-growl('Open a URL', { url: 'https://npmjs.org/package/growl' });