This
it('should match rendered description with description in MockData', () => {
expect(wrapper.find('.description').textContent).toEqual(description.textContent);
});
it('should match rendered header with header in MockData', () => {
expect(wrapper.find('.header').textContent).toEqual(header.textContent);
});
it('should match rendered subheader with subheader in MockData', () => {
expect(wrapper.find('.subheader').textContent).toEqual(subheader.textContent);
});
Is the answer