jest-environment-jsdom-thirteen

JSDOM environment for Jest with JSDOM 13 (which doesn't support Node 6)

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
jest-environment-jsdom-thirteen
6131.0.14 years ago5 years agoMinified + gzip package size for jest-environment-jsdom-thirteen in KB

Readme

jest-environment-jsdom-thirteen
JSDOM 14 is out, so please check out https://github.com/ianschmitz/jest-environment-jsdom-fourteen unless you need JSDOM 13 for some reason.
Jest environment using JSDOM 13, which does not support Node 6 (and will therefore not be used in Jest any time soonsimen-comment).
If you need a newer JSDOM than the one that ships with Jest, add this to your package.json:
{
  // …,
  "jest": {
    // …
    "testEnvironment": "jest-environment-jsdom-thirteen",
    // …
  },
  // …
}