TypeError: Невозможно прочитать свойство 'find' из неопределенного chai.js - PullRequest
0 голосов
/ 13 января 2019

У меня проблема с тестированием моего приложения реакции ошибка говорит: TypeError: Невозможно прочитать свойство 'find' из неопределенного Это код:

beforeAll(() => {
        wrapper = mount(<LoggedInLayout/>);
    });

    it('allows to set props', () => {
        const username = 'testUser';
        wrapper.setProps({username: username});
        expect(wrapper.props().username).to.equal(username);
    });

    it('renders all subcomponents', () => {
        expect(wrapper.find('ul.ant-menu')).to.have.lengthOf(2);
        expect(wrapper.find('.ant-menu-item')).to.have.lengthOf(3);
        expect(wrapper.find('button')).to.have.lengthOf(2);
        expect(wrapper.find('.ant-input')).to.have.lengthOf(1);
        expect(wrapper.find('.anticon')).to.have.lengthOf(2);
    });
...