You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rosh
459aece669
|
4 years ago | |
---|---|---|
.. | ||
lib | 4 years ago | |
node_modules | 4 years ago | |
CHANGELOG.md | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
package.json | 4 years ago |
README.md
jest-environment-jsdom-fourteen
Jest by default uses JSDOM 11 to support Node 6. This package uses JSDOM 14, which supports Node >= 8, and does not support Node 6 (and will therefore not be used in Jest any time soon).
If you need a newer JSDOM than the one that ships with Jest, install this package using npm install --save-dev jest-environment-jsdom-fourteen
or yarn add jest-environment-jsdom-fourteen --dev
, and edit your Jest config like so:
{
"testEnvironment": "jest-environment-jsdom-fourteen"
}
If you would like to use JSDOM 13, see https://github.com/theneva/jest-environment-jsdom-thirteen.