import React from 'react'; import { shallow } from 'enzyme'; import { App } from '../../../src/features/home'; describe('home/App', () => { it('renders node with correct class name', () => { const renderedComponent = shallow(); expect(renderedComponent.find('.home-app').length).toBe(1); }); });