Skip to content

Commit

Permalink
Ignore defaultValue test in IE11 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Jan 12, 2021
1 parent 77eca53 commit 32289b0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compat/test/browser/textarea.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ describe('Textarea', () => {
});

it('should alias defaultValue to children', () => {
// TODO: IE11 doesn't update `node.value` when
// `node.defaultValue` is set.
if (/Trident/.test(navigator.userAgent)) return;

render(<textarea defaultValue="foo" />, scratch);

expect(scratch.firstElementChild.value).to.equal('foo');
Expand Down

0 comments on commit 32289b0

Please sign in to comment.