Created
August 17, 2017 06:53
-
-
Save tgrecojs/c636f7b07dbe05a7a664c2dad3a0677b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
test('<Post />', assert => { | |
const msg = 'should render a post'; | |
const props = { | |
title : 'I am the title', | |
content: 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam' | |
}; | |
const actual = <Post {{...props}} /> | |
const expected = | |
assert.end() | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment