mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-13 02:38:41 +00:00
16 lines
430 B
JavaScript
16 lines
430 B
JavaScript
describe('NotificationMessageTest', function ()
|
|
{
|
|
"use strict";
|
|
|
|
describe('testDefault', function ()
|
|
{
|
|
it('Testing default functionality', function ()
|
|
{
|
|
let msg = new jsOMS.Message.Notification.NotificationMessage('ok', 'abc', 'def');
|
|
|
|
expect(msg.status).toBe('ok');
|
|
expect(msg.title).toBe('abc');
|
|
expect(msg.message).toBe('def');
|
|
});
|
|
});
|
|
}); |