Skip to content

Instantly share code, notes, and snippets.

@wolframkriesing
Created September 11, 2015 20:15
Show Gist options
  • Save wolframkriesing/72d3418bce42909dbe1a to your computer and use it in GitHub Desktop.
Save wolframkriesing/72d3418bce42909dbe1a to your computer and use it in GitHub Desktop.
class Component extends React.Components {
onClick() {
}
render() {
return <a href="" onClick={onClick}></a>
}
}
// test
let c = <Component />
assert.componentEvent(c, 'onClick').calls(c.onClick); // an imaginary assert API
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment