Jest-Enzyme-Config-Article Part-5
import React from 'react'; | |
import { shallow } from ‘enzyme’; | |
// Components | |
import WelcomeMessage from './WelcomeMessage'; | |
function setup() { | |
const props = { | |
imgPath: 'some/image/path/to/a/mock/image', | |
}; | |
const wrapper = shallow(<WelcomeMessage />); | |
return { wrapper, props }; | |
} | |
describe('WelcomeMessage Test Suite', () => { | |
it('Should have an image', () => { | |
const { wrapper } = setup(); | |
expect(wrapper.find('img').exists()).toBe(true); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment