@zohodesk/unit-testing-framework 0.0.2-experimental → 0.0.3-experimental
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/package.json +12 -12
- /package/{dist → build}/index.js +0 -0
- /package/{dist → build}/src/config/config-loader.js +0 -0
- /package/{dist → build}/src/config/default-config.js +0 -0
- /package/{dist → build}/src/environment/globals-inject.js +0 -0
- /package/{dist → build}/src/environment/setup.js +0 -0
- /package/{dist → build}/src/environment/teardown.js +0 -0
- /package/{dist → build}/src/reporters/default-reporter.js +0 -0
- /package/{dist → build}/src/reporters/reporter-handler.js +0 -0
- /package/{dist → build}/src/runner/jest-runner.js +0 -0
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/unit-testing-framework",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-experimental",
|
|
4
4
|
"description": "A modular Jest-based unit testing framework",
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./build/index.js",
|
|
6
6
|
"exports": {
|
|
7
|
-
".": "./
|
|
8
|
-
"./config": "./
|
|
9
|
-
"./reporters": "./
|
|
10
|
-
"./runner": "./
|
|
7
|
+
".": "./build/index.js",
|
|
8
|
+
"./config": "./build/src/config/config-loader.js",
|
|
9
|
+
"./reporters": "./build/src/reporters/reporter-handler.js",
|
|
10
|
+
"./runner": "./build/src/runner/jest-runner.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"
|
|
13
|
+
"build/"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
|
17
17
|
"lint": "eslint src/ index.js",
|
|
18
|
-
"build": "babel src -d
|
|
18
|
+
"build": "babel src -d build/src && babel index.js --out-file build/index.js",
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [],
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"jest": "30.2.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@babel/cli": "
|
|
34
|
-
"@babel/core": "
|
|
35
|
-
"@babel/plugin-transform-modules-commonjs": "
|
|
36
|
-
"@babel/preset-env": "
|
|
33
|
+
"@babel/cli": "7.28.6",
|
|
34
|
+
"@babel/core": "7.29.0",
|
|
35
|
+
"@babel/plugin-transform-modules-commonjs": "7.28.6",
|
|
36
|
+
"@babel/preset-env": "7.29.0",
|
|
37
37
|
"jest": "30.2.0"
|
|
38
38
|
}
|
|
39
39
|
}
|
/package/{dist → build}/index.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|