Exercises
The following are some exercises for you to try out:
- Extract a
labelFor
helper intotest/reactTestExtensions.js
. It should be used like so:expect(labelFor(fieldName)).not.toBeNull();
- Add a
toBeInputFieldOfType
matcher that replaces the three expectations in theitRendersAsATextBox
function. It should be used like so:expect(field(fieldName)).toBeInputFieldOfType("text");