BlockNoteEditor uses many libraries not compatible with Jest. This commit mocks the BlockNoteEditor component to allow Jest to run without errors.
6 lines
109 B
JavaScript
6 lines
109 B
JavaScript
import React from 'react';
|
|
|
|
export const ComponentMock = () => {
|
|
return <div>My component mocked</div>;
|
|
};
|