Skip to content

Commit

Permalink
feat: support jest 26 (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl committed May 18, 2020
1 parent e8140fe commit 5afe077
Show file tree
Hide file tree
Showing 6 changed files with 1,920 additions and 1,779 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
## Changelog (master)

#### Features

* Support Jest 26 ([#374](https://github.com/thymikee/jest-preset-angular/pull/374))

### v8.2.0

#### Features
Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -479,9 +479,10 @@ Reference: https://github.com/facebook/jest/issues/708

### Configure other JSDOM versions

**Jest** v25 by default uses **JSDOM** 15 to support Node 8, which should also be compatible with Jest 24 and earlier.
**Jest** v26 by default uses **JSDOM** 16 to support Node 10+.

If you need a newer JSDOM than the one that ships with Jest and run Node >=10, you can install `jest-environment-jsdom-sixteen` package, and edit your Jest config like so:
If you need a different JSDOM version than the one that ships with Jest, you can install a jsdom environment
package, e.g. `jest-environment-jsdom-sixteen` and edit your Jest config like so:

```
{
Expand Down
38 changes: 19 additions & 19 deletions example/package.json
Expand Up @@ -14,28 +14,28 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.0",
"@angular/common": "~9.1.0",
"@angular/compiler": "~9.1.0",
"@angular/core": "~9.1.0",
"@angular/forms": "~9.1.0",
"@angular/platform-browser": "~9.1.0",
"@angular/platform-browser-dynamic": "~9.1.0",
"@angular/router": "~9.1.0",
"rxjs": "~6.5.4",
"@angular/animations": "~9.1.7",
"@angular/common": "~9.1.7",
"@angular/compiler": "~9.1.7",
"@angular/core": "~9.1.7",
"@angular/forms": "~9.1.7",
"@angular/platform-browser": "~9.1.7",
"@angular/platform-browser-dynamic": "~9.1.7",
"@angular/router": "~9.1.7",
"rxjs": "~6.5.5",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.0",
"@angular/cli": "~9.1.0",
"@angular/compiler-cli": "~9.1.0",
"@angular/language-service": "~9.1.0",
"@types/jest": "^25.1.1",
"@types/node": "^11.0.0",
"jest": "^25.1.0",
"@angular-devkit/build-angular": "~0.901.6",
"@angular/cli": "~9.1.6",
"@angular/compiler-cli": "~9.1.7",
"@angular/language-service": "~9.1.7",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"jest": "^26.0.1",
"jest-preset-angular": "file:../",
"ts-node": "^8.0.3",
"typescript": "~3.7.5"
"ts-node": "^8.10.1",
"typescript": "~3.8.3"
}
}
}

0 comments on commit 5afe077

Please sign in to comment.