@fluojs/testing 1.0.6 → 3.0.0
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/README.ko.md +98 -16
- package/README.md +100 -16
- package/dist/babel-decorators-plugin.d.ts +1 -0
- package/dist/babel-decorators-plugin.d.ts.map +1 -1
- package/dist/babel-decorators-plugin.js +1 -0
- package/dist/byte-range-portability-consumer.test-fixture.d.ts +2 -0
- package/dist/byte-range-portability-consumer.test-fixture.d.ts.map +1 -0
- package/dist/byte-range-portability-consumer.test-fixture.js +11 -0
- package/dist/conformance/fetch-style-websocket-conformance.d.ts +1 -0
- package/dist/conformance/fetch-style-websocket-conformance.d.ts.map +1 -1
- package/dist/conformance/fetch-style-websocket-conformance.js +1 -1
- package/dist/conformance/platform-shell-lifecycle-conformance.d.ts +30 -0
- package/dist/conformance/platform-shell-lifecycle-conformance.d.ts.map +1 -0
- package/dist/conformance/platform-shell-lifecycle-conformance.js +259 -0
- package/dist/http.d.ts +2 -1
- package/dist/http.d.ts.map +1 -1
- package/dist/http.js +8 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -2
- package/dist/mock-types.d.ts +2 -0
- package/dist/mock-types.d.ts.map +1 -0
- package/dist/mock-types.js +1 -0
- package/dist/mock.d.ts +3 -2
- package/dist/mock.d.ts.map +1 -1
- package/dist/mock.js +1 -1
- package/dist/module.d.ts.map +1 -1
- package/dist/module.js +103 -113
- package/dist/portability/error-representation-abort-portability.d.ts +36 -0
- package/dist/portability/error-representation-abort-portability.d.ts.map +1 -0
- package/dist/portability/error-representation-abort-portability.js +190 -0
- package/dist/portability/error-representation-portability-fixture.d.ts +58 -0
- package/dist/portability/error-representation-portability-fixture.d.ts.map +1 -0
- package/dist/portability/error-representation-portability-fixture.js +202 -0
- package/dist/portability/error-representation-portability.d.ts +50 -0
- package/dist/portability/error-representation-portability.d.ts.map +1 -0
- package/dist/portability/error-representation-portability.js +153 -0
- package/dist/portability/http-adapter-portability.d.ts +25 -8
- package/dist/portability/http-adapter-portability.d.ts.map +1 -1
- package/dist/portability/http-adapter-portability.js +446 -69
- package/dist/portability/response-cookie-portability.d.ts +16 -0
- package/dist/portability/response-cookie-portability.d.ts.map +1 -0
- package/dist/portability/response-cookie-portability.js +81 -0
- package/dist/portability/web-runtime-adapter-portability.d.ts +24 -8
- package/dist/portability/web-runtime-adapter-portability.d.ts.map +1 -1
- package/dist/portability/web-runtime-adapter-portability.js +356 -31
- package/dist/types.d.ts +68 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +19 -15
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"override",
|
|
10
10
|
"module-builder"
|
|
11
11
|
],
|
|
12
|
-
"version": "
|
|
12
|
+
"version": "3.0.0",
|
|
13
13
|
"private": false,
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"directory": "packages/testing"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=24.0.0 <27"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
"types": "./dist/conformance/platform-conformance.d.ts",
|
|
50
50
|
"import": "./dist/conformance/platform-conformance.js"
|
|
51
51
|
},
|
|
52
|
+
"./platform-shell-lifecycle-conformance": {
|
|
53
|
+
"types": "./dist/conformance/platform-shell-lifecycle-conformance.d.ts",
|
|
54
|
+
"import": "./dist/conformance/platform-shell-lifecycle-conformance.js"
|
|
55
|
+
},
|
|
52
56
|
"./http-adapter-portability": {
|
|
53
57
|
"types": "./dist/portability/http-adapter-portability.d.ts",
|
|
54
58
|
"import": "./dist/portability/http-adapter-portability.js"
|
|
@@ -80,24 +84,24 @@
|
|
|
80
84
|
"dist"
|
|
81
85
|
],
|
|
82
86
|
"dependencies": {
|
|
83
|
-
"@fluojs/
|
|
84
|
-
"@fluojs/
|
|
85
|
-
"@fluojs/
|
|
86
|
-
"@fluojs/
|
|
87
|
-
"@fluojs/
|
|
87
|
+
"@fluojs/di": "^3.0.0",
|
|
88
|
+
"@fluojs/runtime": "^3.0.0",
|
|
89
|
+
"@fluojs/config": "^2.0.0",
|
|
90
|
+
"@fluojs/core": "^2.0.0",
|
|
91
|
+
"@fluojs/http": "^3.0.0"
|
|
88
92
|
},
|
|
89
93
|
"peerDependencies": {
|
|
90
94
|
"@babel/core": ">=7.0.0",
|
|
91
|
-
"vitest": "^
|
|
95
|
+
"vitest": "^4.1.11"
|
|
92
96
|
},
|
|
93
97
|
"devDependencies": {
|
|
94
|
-
"vitest": "^
|
|
95
|
-
"@fluojs/platform-
|
|
96
|
-
"@fluojs/platform-
|
|
97
|
-
"@fluojs/platform-
|
|
98
|
-
"@fluojs/platform-
|
|
99
|
-
"@fluojs/platform-
|
|
100
|
-
"@fluojs/platform-
|
|
98
|
+
"vitest": "^4.1.11",
|
|
99
|
+
"@fluojs/platform-cloudflare-workers": "^2.0.0",
|
|
100
|
+
"@fluojs/platform-deno": "^2.0.0",
|
|
101
|
+
"@fluojs/platform-nodejs": "^2.0.0",
|
|
102
|
+
"@fluojs/platform-express": "^2.0.0",
|
|
103
|
+
"@fluojs/platform-fastify": "^2.0.0",
|
|
104
|
+
"@fluojs/platform-bun": "^3.0.0"
|
|
101
105
|
},
|
|
102
106
|
"scripts": {
|
|
103
107
|
"prebuild": "node ../../tooling/scripts/clean-dist.mjs",
|