Skip to content

Instantly share code, notes, and snippets.

@NiGhTTraX
Last active February 5, 2017 15:44
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 NiGhTTraX/f882047486d3ff41c82740144e61dc20 to your computer and use it in GitHub Desktop.
Save NiGhTTraX/f882047486d3ff41c82740144e61dc20 to your computer and use it in GitHub Desktop.
it('should delete the todo when clicking on the delete button', function() {
const deleteTodo = sinon.spy();
render(<Todo name=”buy milk” onDelete={deleteTodo} />);
Simulate.click($(‘.delete’)[0]);
expect(deleteTodo).to.have.been.called;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment