GitXplorerGitXplorer
i

jest-environment-jsdom-fifteen

public
18 stars
5 forks
0 issues

Commits

List of commits on branch master.
Unverified
481f132ffe47355387cd7d01bbe4ff8d9b5a4ced

Support userAgent specified in testEnvironmentOptions (#4)

ddiegohaz committed 5 years ago
Unverified
1a085eb9c0b11d43ecf02959b7cf93b893f01180

Cleanup tests

iianschmitz committed 5 years ago
Verified
8d3b24c5c4132af79528df2032308e034de049f7

Update jsdom version to include cors fix (#1)

iianschmitz committed 5 years ago
Verified
582b16d76f35f8ab036c1ecbea715f24fd4d8a58

Update jsdom version to include cors fix

committed 5 years ago
Unverified
2e6cf88ce4a7a27f4d851f3f0fddcbcd7faf178c

Update README.md

iianschmitz committed 5 years ago
Unverified
4d259f8615dca726e04836116e0e6c33bfd3fe14

Initial commit

iianschmitz committed 5 years ago

README

The README file for this repository.

jest-environment-jsdom-fifteen

Deprecated - use jest-environment-jsdom@25 instead.

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.