Adds empty onChange handler to textarea test

This commit is contained in:
Jon Beebe 2014-06-24 07:26:07 -05:00
parent b9c132e58a
commit e077dd40eb
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ describe('ReactDOMTextarea', function() {
});
it('should not render value as an attribute', function() {
var stub = <textarea value="giraffe" />;
var stub = <textarea value="giraffe" onChange={emptyFunction} />;
stub = renderTextarea(stub);
var node = stub.getDOMNode();