Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Dec 13, 2016
1 parent d26d4b1 commit 36fce11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/ReactWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3387,12 +3387,12 @@ describeWithDOM('mount', () => {
}
}

it('should return the outer most DOMComponent of the root wrapper', () => {
it('should return the outermost DOMComponent of the root wrapper', () => {
const wrapper = mount(<Test />);
expect(wrapper.getDOMNode()).to.have.property('className', 'outer');
});

it('should return the outer most DOMComponent of the inner div wrapper', () => {
it('should return the outermost DOMComponent of the inner div wrapper', () => {
const wrapper = mount(<Test />);
expect(wrapper.find('.inner').getDOMNode()).to.have.property('className', 'inner');
});
Expand All @@ -3412,12 +3412,12 @@ describeWithDOM('mount', () => {
</div>
);

it('should return the outer most DOMComponent of the root wrapper', () => {
it('should return the outermost DOMComponent of the root wrapper', () => {
const wrapper = mount(<SFC />);
expect(wrapper.getDOMNode()).to.have.property('className', 'outer');
});

it('should return the outer most DOMComponent of the inner div wrapper', () => {
it('should return the outermost DOMComponent of the inner div wrapper', () => {
const wrapper = mount(<SFC />);
expect(wrapper.find('.inner').getDOMNode()).to.have.property('className', 'inner');
});
Expand Down

0 comments on commit 36fce11

Please sign in to comment.