Last active
January 16, 2016 09:47
-
-
Save khanghoang/bb947ed910507a7d8fe7 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('<ListCommentsContainer />', () => { | |
it('render enought list items', (done) => { | |
let listCommentsContainer = mount(<ListCommentsContainer />); | |
waitFor(() => { | |
return listCommentsContainer.find('li').length === 5; | |
}, done); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment