fix test missing required prop
This commit is contained in:
parent
b9a539eaa2
commit
4a6af5a4d7
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ describe("<TextualBody />", () => {
|
||||||
event: true,
|
event: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
const wrapper = mount(<TextualBody mxEvent={ev} showUrlPreview={true} />);
|
const wrapper = mount(<TextualBody mxEvent={ev} showUrlPreview={true} onHeightChanged={() => {}} />);
|
||||||
expect(wrapper.text()).toBe(ev.getContent().body);
|
expect(wrapper.text()).toBe(ev.getContent().body);
|
||||||
|
|
||||||
let widgets = wrapper.find("LinkPreviewWidget");
|
let widgets = wrapper.find("LinkPreviewWidget");
|
||||||
|
|
Loading…
Reference in a new issue