diff --git a/test/ReactWrapper-spec.jsx b/test/ReactWrapper-spec.jsx index 2adb8465e..689b6c3b4 100644 --- a/test/ReactWrapper-spec.jsx +++ b/test/ReactWrapper-spec.jsx @@ -384,7 +384,7 @@ describeWithDOM('mount', () => { }); - it('should not find components with invalid attributes', () => { + it.skip('should not find components with invalid attributes', () => { // Invalid attributes aren't valid JSX, so manual instantiation is necessary const wrapper = mount( React.createElement('div', null, React.createElement('span', { @@ -514,16 +514,21 @@ describeWithDOM('mount', () => { expect(wrapper.find('button').length).to.equal(1); }); - it('should support object property selectors', () => { + it.skip('should support object property selectors', () => { + class Foo extends React.Component { + render() { + return ; + } + } const wrapper = mount(
-