import withApollo from '../../lib/withApollo' const App = props =>
I have nothing to say.
describe('withApollo module', () => { it('is a function', () => { expect(withApollo).toBeInstanceOf(Function) }) xit('decorates a component', () => { const DecoratedApp = withApollo(App) const MyApp = expect(MyApp).toHaveProperty('props') expect(MyApp).toHaveProperty('_owner') expect(MyApp).toHaveProperty('_store') }) })