jest-environment-jsdom 30.0.2 → 30.0.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/build/index.d.mts +11 -0
- package/package.json +5 -5
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import BaseEnv from "@jest/environment-jsdom-abstract";
|
|
2
|
+
import { EnvironmentContext, JestEnvironmentConfig } from "@jest/environment";
|
|
3
|
+
|
|
4
|
+
//#region src/index.d.ts
|
|
5
|
+
|
|
6
|
+
declare class JSDOMEnvironment extends BaseEnv {
|
|
7
|
+
constructor(config: JestEnvironmentConfig, context: EnvironmentContext);
|
|
8
|
+
}
|
|
9
|
+
declare const TestEnvironment: typeof JSDOMEnvironment;
|
|
10
|
+
//#endregion
|
|
11
|
+
export { TestEnvironment, JSDOMEnvironment as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jest-environment-jsdom",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/jestjs/jest.git",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"./package.json": "./package.json"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@jest/environment": "30.0.
|
|
23
|
-
"@jest/environment-jsdom-abstract": "30.0.
|
|
22
|
+
"@jest/environment": "30.0.4",
|
|
23
|
+
"@jest/environment-jsdom-abstract": "30.0.4",
|
|
24
24
|
"@types/jsdom": "^21.1.7",
|
|
25
25
|
"@types/node": "*",
|
|
26
26
|
"jsdom": "^26.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@jest/test-utils": "30.0.
|
|
29
|
+
"@jest/test-utils": "30.0.4"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"canvas": "^3.0.0"
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "f4296d2bc85c1405f84ddf613a25d0bc3766b7e5"
|
|
46
46
|
}
|