@modern-js/plugin-testing 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/js/modern/cli/index.js +1 -1
- package/dist/js/node/cli/index.js +1 -1
- package/dist/js/treeshaking/cli/index.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @modern-js/plugin-testing
|
2
2
|
|
3
|
+
## 1.5.4
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 0e0537005: fix: unlock @babel/core version
|
8
|
+
- 69a728375: fix: remove exports.jsnext:source after publish
|
9
|
+
- Updated dependencies [b7b8075dc]
|
10
|
+
- Updated dependencies [cd7346b0d]
|
11
|
+
- Updated dependencies [0e0537005]
|
12
|
+
- Updated dependencies [738c55d39]
|
13
|
+
- Updated dependencies [69a728375]
|
14
|
+
- Updated dependencies [0f86e133b]
|
15
|
+
- @modern-js/webpack@1.6.2
|
16
|
+
- @modern-js/runtime-core@1.4.5
|
17
|
+
- @modern-js/utils@1.7.2
|
18
|
+
- @modern-js/testing@1.5.1
|
19
|
+
- @modern-js/babel-compiler@1.2.4
|
20
|
+
- @modern-js/testing-plugin-bff@1.4.2
|
21
|
+
- @modern-js/bff-utils@1.2.5
|
22
|
+
|
3
23
|
## 1.5.3
|
4
24
|
|
5
25
|
### Patch Changes
|
@@ -74,7 +74,7 @@ export default (() => {
|
|
74
74
|
testEnvironment: 'jsdom',
|
75
75
|
resolver: DEFAULT_RESOLVER_PATH,
|
76
76
|
rootDir: appContext.appDirectory || process.cwd(),
|
77
|
-
// todo:
|
77
|
+
// todo: diffrernt test root for diffrent solutions
|
78
78
|
// testMatch: [`<rootDir>/(src|tests|electron)/**/*.test.[jt]s?(x)`],
|
79
79
|
// testMatch bug on windows, issue: https://github.com/facebook/jest/issues/7914
|
80
80
|
testMatch: [`<rootDir>/src/**/*.test.[jt]s?(x)`, `<rootDir>/tests/**/*.test.[jt]s?(x)`, `<rootDir>/electron/**/*.test.[jt]s?(x)`]
|
@@ -94,7 +94,7 @@ var _default = () => {
|
|
94
94
|
testEnvironment: 'jsdom',
|
95
95
|
resolver: _testing.DEFAULT_RESOLVER_PATH,
|
96
96
|
rootDir: appContext.appDirectory || process.cwd(),
|
97
|
-
// todo:
|
97
|
+
// todo: diffrernt test root for diffrent solutions
|
98
98
|
// testMatch: [`<rootDir>/(src|tests|electron)/**/*.test.[jt]s?(x)`],
|
99
99
|
// testMatch bug on windows, issue: https://github.com/facebook/jest/issues/7914
|
100
100
|
testMatch: [`<rootDir>/src/**/*.test.[jt]s?(x)`, `<rootDir>/tests/**/*.test.[jt]s?(x)`, `<rootDir>/electron/**/*.test.[jt]s?(x)`]
|
@@ -98,7 +98,7 @@ export default (function () {
|
|
98
98
|
testEnvironment: 'jsdom',
|
99
99
|
resolver: DEFAULT_RESOLVER_PATH,
|
100
100
|
rootDir: appContext.appDirectory || process.cwd(),
|
101
|
-
// todo:
|
101
|
+
// todo: diffrernt test root for diffrent solutions
|
102
102
|
// testMatch: [`<rootDir>/(src|tests|electron)/**/*.test.[jt]s?(x)`],
|
103
103
|
// testMatch bug on windows, issue: https://github.com/facebook/jest/issues/7914
|
104
104
|
testMatch: ["<rootDir>/src/**/*.test.[jt]s?(x)", "<rootDir>/tests/**/*.test.[jt]s?(x)", "<rootDir>/electron/**/*.test.[jt]s?(x)"]
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "1.5.
|
14
|
+
"version": "1.5.4",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/types/index.d.ts",
|
17
17
|
"main": "./dist/js/node/index.js",
|
@@ -78,26 +78,26 @@
|
|
78
78
|
}
|
79
79
|
},
|
80
80
|
"dependencies": {
|
81
|
-
"@babel/core": "7.
|
81
|
+
"@babel/core": "^7.17.0",
|
82
82
|
"@babel/preset-env": "^7.15.6",
|
83
83
|
"@babel/runtime": "^7",
|
84
84
|
"@modern-js-reduck/plugin-auto-actions": "^1.0.2",
|
85
85
|
"@modern-js-reduck/plugin-effects": "^1.0.2",
|
86
86
|
"@modern-js-reduck/plugin-immutable": "^1.0.1",
|
87
87
|
"@modern-js-reduck/store": "^1.0.3",
|
88
|
-
"@modern-js/babel-compiler": "^1.2.
|
89
|
-
"@modern-js/bff-utils": "^1.2.
|
90
|
-
"@modern-js/runtime-core": "^1.4.
|
91
|
-
"@modern-js/testing": "^1.5.
|
92
|
-
"@modern-js/testing-plugin-bff": "^1.4.
|
93
|
-
"@modern-js/utils": "^1.7.
|
94
|
-
"@modern-js/webpack": "^1.6.
|
88
|
+
"@modern-js/babel-compiler": "^1.2.4",
|
89
|
+
"@modern-js/bff-utils": "^1.2.5",
|
90
|
+
"@modern-js/runtime-core": "^1.4.5",
|
91
|
+
"@modern-js/testing": "^1.5.1",
|
92
|
+
"@modern-js/testing-plugin-bff": "^1.4.2",
|
93
|
+
"@modern-js/utils": "^1.7.2",
|
94
|
+
"@modern-js/webpack": "^1.6.2",
|
95
95
|
"@testing-library/jest-dom": "^5.14.1",
|
96
96
|
"@testing-library/react": "^12.0.0",
|
97
97
|
"@types/testing-library__jest-dom": "^5.14.3"
|
98
98
|
},
|
99
99
|
"devDependencies": {
|
100
|
-
"@modern-js/core": "1.10.
|
100
|
+
"@modern-js/core": "1.10.1",
|
101
101
|
"@scripts/build": "0.0.0",
|
102
102
|
"@scripts/jest-config": "0.0.0",
|
103
103
|
"@types/jest": "^26",
|