Chatwoot/app/javascript/widget/api/specs/endPoints.spec.js
Muhsin Keloth f9bd447912
chore: Upgrade vue-i18n to 8.x (#1383)
Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
2020-12-12 12:08:36 +05:30

46 lines
1.1 KiB
JavaScript

import endPoints from '../endPoints';
describe('#sendMessage', () => {
it('returns correct payload', () => {
const spy = jest.spyOn(global, 'Date').mockImplementation(() => ({
toString: () => 'mock date',
}));
const windowSpy = jest.spyOn(window, 'window', 'get');
windowSpy.mockImplementation(() => ({
WOOT_WIDGET: {
$root: {
$i18n: {
locale: 'ar',
},
},
},
location: {
search: '?param=1',
},
}));
expect(endPoints.sendMessage('hello')).toEqual({
url: `/api/v1/widget/messages?param=1&locale=ar`,
params: {
message: {
content: 'hello',
referer_url: '',
timestamp: 'mock date',
},
},
});
windowSpy.mockRestore();
spy.mockRestore();
});
});
describe('#getConversation', () => {
it('returns correct payload', () => {
expect(endPoints.getConversation({ before: 123 })).toEqual({
url: `/api/v1/widget/messages`,
params: {
before: 123,
},
});
});
});