我们假设某个组件基于某种属性在render方法中返回null。
使用Expect的最佳方法是什么,以确保不呈现组件?
示例:
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import Pagination from '../Pagination';
it('should not render if totaPages is 0', () => {
const { container } = render(<Pagination activePage={1} totalPages={0} />);
expect(container.firstChild).toBeNull();
});
上面的代码够吗?