📅  最后修改于: 2022-03-11 15:02:33.230000             🧑  作者: Mango
describe(' ', () => {
const wrapper = mount(
);
it('renders child correctly', () => {
expect(wrapper.find('tbody').children()).to.have.length(cats.length);
expect(wrapper.find('tbody').children().find('tr')).to.have.length(cats.length);
});