XuelesszzZ 94af2b8e7b 6-30-5 há 1 ano atrás
..
lib 94af2b8e7b 6-30-5 há 1 ano atrás
node_modules 94af2b8e7b 6-30-5 há 1 ano atrás
CHANGELOG.md 94af2b8e7b 6-30-5 há 1 ano atrás
LICENSE 94af2b8e7b 6-30-5 há 1 ano atrás
README.md 94af2b8e7b 6-30-5 há 1 ano atrás
package.json 94af2b8e7b 6-30-5 há 1 ano atrás

README.md

jest-environment-jsdom-fifteen

Jest by default uses JSDOM 11 to support Node 6. This package uses JSDOM 15, 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-fifteen or yarn add jest-environment-jsdom-fifteen --dev, and edit your Jest config like so:

{
  "testEnvironment": "jest-environment-jsdom-fifteen"
}

If you would like to use JSDOM 14, see https://github.com/ianschmitz/jest-environment-jsdom-fourteen.