@alandeivson/jest-environment-enzyme

Runtime Environment for enzyme tests in jest

Usage no npm install needed!

<script type="module">
  import alandeivsonJestEnvironmentEnzyme from 'https://cdn.skypack.dev/@alandeivson/jest-environment-enzyme';
</script>

README

Forked from https://github.com/enzymejs/enzyme-matchers. Added support for React 17.

jest-environment-enzyme

npm version License

Overview

Setting up Enzyme with Jest and React is a somewhat complicated process. There are a lot of dependencies, configuring adapters, etc. This module will take lessen that setup and make it more declarative. This package will also simplify your test files by declaring React, and enzyme wrappers in the global scope. This means that all of your test files don't need to include imports for React or enzyme.

The setup can be as simple as this:

yarn add jest-environment-enzyme jest-enzyme enzyme-adapter-react-* --dev

(Where * is your app's adapter that matches your React version)

For example, if you are using react-16, it should look like:

yarn add jest-environment-enzyme jest-enzyme enzyme-adapter-react-16 --dev
// package.json
"jest": {
  "setupFilesAfterEnv": ["jest-enzyme"],
  "testEnvironment": "enzyme"
}

Additionally, you can specify which enzyme adapter you want to use through the testEnvironmentOptions.enzymeAdapter.

Valid options are:

  • react13
  • react14
  • react15
  • react15.4
  • react16 (default)
// package.json
"jest": {
  "setupFilesAfterEnv": ["jest-enzyme"],
  "testEnvironment": "enzyme",
  "testEnvironmentOptions": {
    "enzymeAdapter": "react16"
  }
}

Lastly, and most importantly, this library has a hard requirement on jest-enzyme.