-
-
Save LissetteIbnz/a314d53d02c92421abd58cf05d92331d to your computer and use it in GitHub Desktop.
Unit test, mocking components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {ShareCom} from '../somewhere/ShareCom' | |
jest.mock('../somewhere/UserCom', () => ()=> <div id="mockUserCom">mockUserCom</div>) | |
jest.mock('installComponent', () => ({ | |
InstallCom: 'mockInstallCom' | |
})) | |
describe('ShareCom', () => { | |
it('should return correct component', () => { | |
const wrapper = mount( | |
<ShareCom | |
something={something} | |
/> | |
) | |
expect(wrapper.find('mockInstallCom').length).toEqual(1) | |
expect(wrapper.find('#mockUserCom').length).toEqual(1) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment