jsOMS/tests/Message/Notification/NotificationMessageTest.js
Dennis Eichhorn d2e2bf97df general fixes
2024-04-19 02:08:38 +00:00

18 lines
496 B
JavaScript
Executable File

import { NotificationMessage } from '../../../Message/Notification/NotificationMessage.js';
describe('NotificationMessageTest', function ()
{
'use strict';
describe('testDefault', function ()
{
it('Testing default functionality', function ()
{
let msg = new NotificationMessage('ok', 'abc', 'def');
expect(msg.status).toBe('ok');
expect(msg.title).toBe('abc');
expect(msg.message).toBe('def');
});
});
});