使用Jest和Reaction测试库测试`img.onLoad`/`img.onError`

今天下午,Out团队在使用Jest为<Avatar />组件编写Reaction测试库(RTL)测试时遇到了一个场景。具体地说,我们希望测试<img />标记在无法加载(onError被触发)以匹配组件的预期最终视图时是否从DOM中删除。由于某些原因,在<img />DOM元素上使用fireEvent对我们来说并不是一目了然的,我们没有在网上找到这个显式的解决方案,所以我们想要共享。正如您可以想象的那样,这也适用于onLoad等其他事件。More about RTL Events。

it('should render with only initials when avatar image is NOT found', async() => {
  const { container } = render(<Avatar {...defaultMocks} />);
  const avatarImg = container.querySelector('img');

  expect(avatarImg).toBeInTheDocument();

  fireEvent(avatarImg, new Event('error'));

  expect(avatarImg).not.toBeInTheDocument();
});

解决方案

使用TestID或Role获取镜像,然后使用FireEvent分别调用onLoadOnError函数

const image = getByRole('img')

fireEvent.load(image);

用于onError

fireEvent.error(image)

相关文章