Skip to content

Commit

Permalink
Merge branch 'master' into fix-509
Browse files Browse the repository at this point in the history
  • Loading branch information
alecrobins authored Oct 7, 2016
2 parents 7b94db8 + e722625 commit 0331b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/ShallowWrapper/dive.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ class Foo extends React.Component {
const wrapper = shallow(<Foo />);
expect(wrapper.find('.in-bar')).to.have.length(0);
expect(wrapper.find(Bar)).to.have.length(1);
expect(wrapper.dive().find('.in-bar')).to.have.length(1);
expect(wrapper.find(Bar).dive().find('.in-bar')).to.have.length(1);
```

0 comments on commit 0331b47

Please sign in to comment.