我有一个带有 React Quill 文本编辑器的表单。在提交时,我从中读取了值。我写了一个单元测试,写一些东西并检查是否发送了正确的值。它是这样的。
const updatedText = "New updated text(November)";
fireEvent.change(document.querySelector('quill-editor'), {
target: { textContent: updatedText }
});
fireEvent.click(screen.getByRole("button", { name: "update-post" }));
await waitFor(() => {
expect(mockSocialPostUpdate).toHaveBeenCalledWith(
expect.objectContaining({ path: "/api/v1/social-posts/" }),
{ id: feeds[0]["profile"]["id"] },
{
id: 1,
text: expect.objectContaining({
insert: updatedText
}),
profileId: 1,
channelId: 1
}
);
});
我正在监视 put 方法并使用 fireEvent.change。当我看到已发布的内容时,它仍然是旧值。有没有正确的方法来改变它?