We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4672cef + dfe10d0 commit 641b277Copy full SHA for 641b277
docs/recipes/WritingTests.md
@@ -199,9 +199,9 @@ function setup() {
199
let output = renderer.getRenderOutput();
200
201
return {
202
- props: props,
203
- output: output,
204
- renderer: renderer
+ props,
+ output,
+ renderer
205
};
206
}
207
@@ -225,7 +225,7 @@ describe('components', () => {
225
expect(input.props.placeholder).toBe('What needs to be done?');
226
});
227
228
- it('should call call addTodo if length of text is greater than 0', () => {
+ it('should call addTodo if length of text is greater than 0', () => {
229
const { output, props } = setup();
230
let input = output.props.children[1];
231
input.props.onSave('');
0 commit comments