Skip to content

Latest commit

 

History

History
89 lines (55 loc) · 3.02 KB

common-issues.md

File metadata and controls

89 lines (55 loc) · 3.02 KB

Common Issues

This list aims to be comprehensive. If you find an issue that has been frequently brought up in Github issues that is not here, please open a PR to add it.

Webpack Build Issues

Common Solutions

Mismatched versions of React and React* libraries.

It is important to ensure all React and React* libraries your project depend on are matching versions. If you are using React 15.4.0, you should ensure your React* libraries (like react-test-utils) are equivalently on 15.4.0.

Bad configuration.

Please see the guide for webpack to ensure your configuration is correct for weback.

Error: Cannot find module 'react-dom/lib/ReactTestUtils'

Reason

In order to properly support multiple versions of React, we have conditional requirements that npm does not support with tools like peerDependencies. Instead we manually require and throw errors if the dependency is not met.

Solution

Install a matching version of React for react-test-utils. Example package.json

{
  "devDependencies": {
    "react": "15.4.0",
    "react-test-utils": "15.4.0"
  }
}

Query Selector fails

Reason

This could be due to a regression, or the feature is not yet implemented. If you are wanting to use a certain query syntax, make sure it is implemented first before raising an issue. Here is the list of selectors we currently support: https://github.com/airbnb/enzyme/blob/master/docs/api/selector.md

Testing third party libraries

Some third party libraries are difficult or impossible to test. Enzyme's scope is severly limited to what React exposes and provides for us. Things like "portals" are not currently testable with Enzyme directly for that reason.

An example:

If you are testing a library that creates a Modal, and it manually appends it to a different part of the DOM, React has lost track of this component, and therefore Enzyme has also lost track of it.

Even moreso, if this library appends dom elements into react components, react still does not know about it. A library like d3 which appends DOM elements would be an example here.

Solutions

You can use the render API to attempt to access and assert on the appended DOM components. This will likely become natively supported when React natively supports Portals, which is expected to land with Fiber.

If the third party solution lets you attach a ref, that would be the ideal scenario. With a ref you can then get that element from Enzyme.

example

import ThirdPartyPortalLibrary from 'someplace';

class Comp extends React.Component {
  render() {
    return <ThirdPartyPortalLibrary ref={node => this.portal = node}>
  }
}

const wrapper = mount(<Comp />);
const portal = wrapper.instance().portal;
// assert on `portal`