Created
November 4, 2019 18:40
-
-
Save andyrichardson/3bfb37efd1614421c832008c0441d9fd to your computer and use it in GitHub Desktop.
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
describe('on mount', () => { | |
it('renders friends list', () => { | |
expect(shallow(<FriendsList friends={friends} />)).toMatchSnapshot() | |
}); | |
it('renders "no friends found"', () => { | |
expect(shallow(<FriendsList />)).toMatchSnapshot() | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment