redmine-client/node_modules/node-notifier/test/index.js
2014-12-26 04:41:54 +01:00

31 lines
798 B
JavaScript

var should = require('should');
var notifier = require('../');
describe('constructors', function(){
it('should expose a default selected instance', function () {
should(notifier.notify).be.ok;
});
it('should expose a default selected constructor function', function () {
should(notifier instanceof notifier.Notification).be.ok;
});
it('should expose constructor for WindowsBalloon', function () {
should(notifier.WindowsBalloon).be.ok;
});
it('should expose constructor for WindowsToaster', function () {
should(notifier.WindowsToaster).be.ok;
});
it('should expose constructor for NotifySend', function () {
should(notifier.NotifySend).be.ok;
});
it('should expose constructor for Growl', function () {
should(notifier.Growl).be.ok;
});
});