mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
15 lines
527 B
JavaScript
15 lines
527 B
JavaScript
describe('NotificationManagerTest', function ()
|
|
{
|
|
"use strict";
|
|
|
|
describe('testDefault', function ()
|
|
{
|
|
it('Testing default functionality', function ()
|
|
{
|
|
let manager = new jsOMS.Message.Notification.NotificationManager();
|
|
|
|
expect(manager.getAppNotifier()).toEqual(jasmine.any(jsOMS.Message.Notification.App.AppNotification));
|
|
expect(manager.getBrowserNotifier()).toEqual(jasmine.any(jsOMS.Message.Notification.Browser.BrowserNotification));
|
|
});
|
|
});
|
|
}); |