Sune Simonsen
Sune Simonsen
There seems to be some confusion around the sematics of [was called with](http://unexpected.js.org/unexpected-sinon/assertions/spy/was-called-with/) so we need to document that a bit better. Mention that it uses `to equal` semantics by...
Just read it from a meta tag on the page. https://content-security-policy.com/nonce/
Fixes: #21
I'm considering to support a less verbose chaining syntax: ```js simulate(element) .click() .change('.input', { value: 'foobar' }) .keyUp({ data: { keyCode: 13 } }) .click('.close') ``` I think we should...
Components that render into the body through a portal needs to be unmounted to make sure the markup doesn't stay around in the body.
If you mount a component that returns different root elements when you interact with it, then you need to mount it within a wrapper element.
See issue: https://github.com/sunesimonsen/react-dom-testing/issues/6
Right now we have a fallback that make theme not containing a `styles` property to be tweeted differently. We want to get rid of that, but it would break backwards...
When calling `append`, `block`, `amend` and `prependLinesWith` with a function the function will be executed at serialization time and know the context it is inserted into.