Enzyme Quiz - evan-401-advanced-javascript/seattle-javascript-401d31 GitHub Wiki
Enzyme Quiz!
- What kind of rendering should you do if you don't want your test to change the behavior of child components?
- What kind of rendering should you do if you want to test components that interact with DOM APIs or higher level components?
- What kind of rendering should you do to have html generated from your react tree?
Answers:
- Shallow rendering
- Full rendering
- Static rendering