mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
import TimeMixin from '../time';
|
|
|
|
describe('#messageStamp', () => {
|
|
it('returns correct value', () => {
|
|
expect(TimeMixin.methods.messageStamp(1612971343)).toEqual('3:35 PM');
|
|
expect(TimeMixin.methods.messageStamp(1612971343, 'LLL d, h:mm a')).toEqual(
|
|
'Feb 10, 3:35 PM'
|
|
);
|
|
});
|
|
});
|