Skip to content

Instantly share code, notes, and snippets.

@tgrecojs
Created August 17, 2017 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tgrecojs/c636f7b07dbe05a7a664c2dad3a0677b to your computer and use it in GitHub Desktop.
Save tgrecojs/c636f7b07dbe05a7a664c2dad3a0677b to your computer and use it in GitHub Desktop.
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