Skip to content

Commit f75662d

Browse files
authored
chore: release Jest 28 support (#472)
* chore: release Jest 28 support * chore: bump deps
1 parent d8568cb commit f75662d

File tree

16 files changed

+30
-25
lines changed

16 files changed

+30
-25
lines changed

README.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,23 @@ Jest transformer for Vue Single File Components.
66

77
Since we need to support a variety of Vue and Jest versions, vue-jest doesn't follow semantic versioning.
88

9-
| Vue version | Jest Version | Package |
10-
| ----------- | ----------------- | ------------------- |
11-
| Vue 2 | Jest 26 and below | `vue-jest@4` |
12-
| Vue 3 | Jest 26 and below | `vue-jest@5` |
13-
| Vue 2 | Jest 27 and above | `@vue/vue2-jest@xx` |
14-
| Vue 3 | Jest 27 and above | `@vue/vue3-jest@xx` |
15-
16-
**xx**: Major version of Jest
9+
| Vue version | Jest Version | npm Package | Branch |
10+
| ----------- | ----------------- | ------------------- | ------ |
11+
| Vue 2 | Jest 26 and below | `vue-jest@4` | |
12+
| Vue 3 | Jest 26 and below | `vue-jest@5` | |
13+
| Vue 2 | Jest 27 and above | `@vue/vue2-jest@27` | 27.x |
14+
| Vue 3 | Jest 27 and above | `@vue/vue3-jest@27` | 27.x |
15+
| Vue 2 | Jest 28 and above | `@vue/vue2-jest@28` | 28.x |
16+
| Vue 3 | Jest 27 and above | `@vue/vue3-jest@28` | 28.x |
1717

1818
```bash
19-
npm install --save-dev @vue/vue2-jest # (use the appropriate version)
20-
yarn add @vue/vue2-jest --dev
19+
# Vue 2
20+
npm install --save-dev @vue/vue2-jest@28 # (use the appropriate version)
21+
yarn add @vue/vue2-jest@28 --dev
22+
23+
# Vue 3
24+
npm install --save-dev @vue/vue3-jest@28 # (use the appropriate version)
25+
yarn add @vue/vue3-jest@28 --dev
2126
```
2227

2328
## Setup

e2e/2.x/babel-in-package/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@babel/preset-env": "^7.9.0",
1717
"@vue/babel-preset-jsx": "^1.2.4",
1818
"@vue/test-utils": "^1.1.0",
19-
"@vue/vue2-jest": "~27.0.0-alpha.1",
19+
"@vue/vue2-jest": "^28.0.0",
2020
"coffeescript": "^2.3.2",
2121
"jest": "28.x",
2222
"jest-environment-jsdom": "28.0.2",

e2e/2.x/basic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"sass": "^1.23.7",
2626
"ts-jest": "^28.0.1",
2727
"typescript": "^4.6.4",
28-
"@vue/vue2-jest": "~27.0.0-alpha.1"
28+
"@vue/vue2-jest": "^28.0.0"
2929
},
3030
"jest": {
3131
"testEnvironment": "jsdom",

e2e/2.x/custom-transformers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"postcss": "^7.0.13",
2121
"postcss-color-function": "^4.0.1",
2222
"sass": "^1.23.7",
23-
"@vue/vue2-jest": "~27.0.0-alpha.1"
23+
"@vue/vue2-jest": "^28.0.0"
2424
},
2525
"jest": {
2626
"testEnvironment": "jsdom",

e2e/2.x/style/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"postcss": "^7.0.13",
2020
"sass": "^1.23.7",
2121
"stylus": "^0.54.5",
22-
"@vue/vue2-jest": "~27.0.0-alpha.1"
22+
"@vue/vue2-jest": "^28.0.0"
2323
},
2424
"jest": {
2525
"testEnvironment": "jsdom",

e2e/3.x/babel-in-package/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"jest-environment-jsdom": "28.0.2",
1818
"ts-jest": "^28.0.1",
1919
"typescript": "^4.6.4",
20-
"@vue/vue3-jest": "^27.0.0-alpha.1"
20+
"@vue/vue3-jest": "^28.0.0"
2121
},
2222
"jest": {
2323
"testEnvironment": "jsdom",

e2e/3.x/basic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"ts-jest": "^28.0.1",
2424
"typescript": "^4.6.4",
2525
"vue-class-component": "^8.0.0-beta.4",
26-
"@vue/vue3-jest": "^27.0.0-alpha.1",
26+
"@vue/vue3-jest": "^28.0.0",
2727
"vue-property-decorator": "^10.0.0-rc.3"
2828
}
2929
}

e2e/3.x/custom-block/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@babel/core": "^7.9.0",
1414
"@babel/preset-env": "^7.9.0",
1515
"@vue/compiler-sfc": "^3.0.3",
16-
"@vue/vue3-jest": "^27.0.0-alpha.1",
16+
"@vue/vue3-jest": "^28.0.0",
1717
"jest": "^28.0.2",
1818
"jest-environment-jsdom": "28.0.2"
1919
},

e2e/3.x/custom-transformers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@babel/core": "^7.9.0",
1414
"@babel/preset-env": "^7.9.0",
1515
"@vue/test-utils": "^2.0.0-rc.10",
16-
"@vue/vue3-jest": "^27.0.0-alpha.1",
16+
"@vue/vue3-jest": "^28.0.0",
1717
"babel-jest": "^28.0.2",
1818
"css-tree": "^2.0.1",
1919
"jest": "^28.0.2",

e2e/3.x/javascript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"coffeescript": "^2.3.2",
1616
"jest": "^28.0.2",
1717
"jest-environment-jsdom": "28.0.2",
18-
"@vue/vue3-jest": "^27.0.0-alpha.1"
18+
"@vue/vue3-jest": "^28.0.0"
1919
},
2020
"jest": {
2121
"testEnvironment": "jsdom",

e2e/3.x/style/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"postcss": "^7.0.13",
2020
"sass": "^1.23.7",
2121
"stylus": "^0.54.5",
22-
"@vue/vue3-jest": "^27.0.0-alpha.1"
22+
"@vue/vue3-jest": "^28.0.0"
2323
},
2424
"jest": {
2525
"testEnvironment": "jsdom",

e2e/3.x/typescript-with-babel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"jest-environment-jsdom": "28.0.2",
1717
"ts-jest": "^28.0.1",
1818
"typescript": "^4.6.4",
19-
"@vue/vue3-jest": "^27.0.0-alpha.1"
19+
"@vue/vue3-jest": "^28.0.0"
2020
},
2121
"jest": {
2222
"testEnvironment": "jsdom",

e2e/3.x/typescript-with-compiler-options/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"jest-environment-jsdom": "28.0.2",
1616
"ts-jest": "^28.0.1",
1717
"typescript": "^4.6.4",
18-
"@vue/vue3-jest": "^27.0.0-alpha.1"
18+
"@vue/vue3-jest": "^28.0.0"
1919
},
2020
"jest": {
2121
"testEnvironment": "jsdom",

e2e/3.x/typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"jest-environment-jsdom": "28.0.2",
1616
"ts-jest": "^28.0.1",
1717
"typescript": "^4.6.4",
18-
"@vue/vue3-jest": "^27.0.0-alpha.1"
18+
"@vue/vue3-jest": "^28.0.0"
1919
},
2020
"jest": {
2121
"testEnvironment": "jsdom",

packages/vue2-jest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/vue2-jest",
3-
"version": "27.0.0",
3+
"version": "28.0.0",
44
"description": "Jest transformer for Vue 2",
55
"main": "lib/index.js",
66
"files": [

packages/vue3-jest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/vue3-jest",
3-
"version": "27.0.0",
3+
"version": "28.0.0",
44
"description": "Jest Vue transform",
55
"main": "lib/index.js",
66
"files": [

0 commit comments

Comments
 (0)