@@ -95,4 +104,8 @@ const MessageBox: React.FunctionComponent
= ({
);
};
+export const MessageBox = React.forwardRef((props: MessageBoxProps, ref: React.Ref) => (
+
+));
+
export default MessageBox;
diff --git a/packages/module/src/ResponseActions/ResponseActions.test.tsx b/packages/module/src/ResponseActions/ResponseActions.test.tsx
index 74a1d4326..85ef6b930 100644
--- a/packages/module/src/ResponseActions/ResponseActions.test.tsx
+++ b/packages/module/src/ResponseActions/ResponseActions.test.tsx
@@ -31,11 +31,11 @@ describe('ResponseActions', () => {
it('should be able to change aria labels', () => {
const actions = [
- { type: 'positive', ariaLabel: /Thumbs up/i },
- { type: 'negative', ariaLabel: /Thumbs down/i },
- { type: 'copy', ariaLabel: /Copy the message/i },
- { type: 'share', ariaLabel: /Share it with friends/i },
- { type: 'listen', ariaLabel: /Listen up/i }
+ { type: 'positive', ariaLabel: 'Thumbs up' },
+ { type: 'negative', ariaLabel: 'Thumbs down' },
+ { type: 'copy', ariaLabel: 'Copy the message' },
+ { type: 'share', ariaLabel: 'Share it with friends' },
+ { type: 'listen', ariaLabel: 'Listen up' }
];
actions.forEach(({ type, ariaLabel }) => {
render();