Chore: Cleanup attachment handling for Facebook & Whatsapp (#1051)
* Chore: Enable file upload for facebook messenger * Chore: Fix attachments * Chore: Fix Specs * Fix ReplyBox file attachment logic * Set default value for message Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
This commit is contained in:
parent
196741d975
commit
a18d54b706
14 changed files with 212 additions and 108 deletions
21
app/javascript/shared/helpers/specs/KeyboardHelpers.spec.js
Normal file
21
app/javascript/shared/helpers/specs/KeyboardHelpers.spec.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { isEnter, isEscape, hasPressedShift } from '../KeyboardHelpers';
|
||||
|
||||
describe('#KeyboardHelpers', () => {
|
||||
describe('#isEnter', () => {
|
||||
it('return correct values', () => {
|
||||
expect(isEnter({ keyCode: 13 })).toEqual(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#isEscape', () => {
|
||||
it('return correct values', () => {
|
||||
expect(isEscape({ keyCode: 27 })).toEqual(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#hasPressedShift', () => {
|
||||
it('return correct values', () => {
|
||||
expect(hasPressedShift({ shiftKey: true })).toEqual(true);
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue