Skip to content

Commit

Permalink
Failing test for descendant selector
Browse files Browse the repository at this point in the history
  • Loading branch information
ReactiveRaven authored and ljharb committed Jun 17, 2018
1 parent 7fcd96e commit f48a419
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/enzyme-test-suite/test/selector-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ describe('selectors', () => {

expect(wrapper.find('span')).to.have.lengthOf(2);
expect(wrapper.find('.top-div span')).to.have.lengthOf(1);
expect(wrapper.find('div div')).to.have.lengthOf(2);
});

it('nested descendent', () => {
Expand Down

0 comments on commit f48a419

Please sign in to comment.