Skip to content

Commit

Permalink
Bump jest from 27.5.1 to 28.0.3 (#42)
Browse files Browse the repository at this point in the history
* Bump jest from 27.5.1 to 28.0.3

Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) from 27.5.1 to 28.0.3.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v28.0.3/packages/jest)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Set `testEnvironment` to `jsdom`

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robin van der Vleuten <robin@webstronauts.co>
  • Loading branch information
dependabot[bot] and robinvdvleuten committed May 2, 2022
1 parent fb8d759 commit 2f57b47
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions package.json
Expand Up @@ -23,7 +23,7 @@
"build": "microbundle",
"prepare": "run-s build",
"test": "run-p test:**",
"test:jest": "jest --env=jsdom",
"test:jest": "jest",
"test:size": "bundlesize"
},
"repository": {
Expand All @@ -34,23 +34,27 @@
"url": "https://github.com/robinvdvleuten/shvl/issues"
},
"homepage": "https://github.com/robinvdvleuten/shvl#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bundlesize": [
{
"path": "./dist/*.js",
"threshold": "300b"
}
],
"babel": {
"presets": [
"@babel/preset-env"
]
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^28.0.3",
"bundlesize": "^0.18.0",
"jest": "^27.0.3",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"jest-in-case": "^1.0.2",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.2"
Expand Down

0 comments on commit 2f57b47

Please sign in to comment.