@fairfox/polly 0.82.0 → 0.83.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/dist/cli/polly.js +22 -1
- package/dist/cli/polly.js.map +3 -3
- package/dist/tools/bdd/src/args.d.ts +21 -0
- package/dist/tools/bdd/src/bus-driver.d.ts +36 -0
- package/dist/tools/bdd/src/check-verify.d.ts +15 -0
- package/dist/tools/bdd/src/cli.d.ts +2 -0
- package/dist/tools/bdd/src/cli.js +701 -0
- package/dist/tools/bdd/src/cli.js.map +19 -0
- package/dist/tools/bdd/src/config.d.ts +9 -0
- package/dist/tools/bdd/src/extract.d.ts +2 -0
- package/dist/tools/bdd/src/index.d.ts +19 -0
- package/dist/tools/bdd/src/index.js +540 -0
- package/dist/tools/bdd/src/index.js.map +17 -0
- package/dist/tools/bdd/src/parse.d.ts +3 -0
- package/dist/tools/bdd/src/report.d.ts +6 -0
- package/dist/tools/bdd/src/run.d.ts +8 -0
- package/dist/tools/bdd/src/scaffold.d.ts +7 -0
- package/dist/tools/bdd/src/steps.d.ts +55 -0
- package/dist/tools/bdd/src/types.d.ts +145 -0
- package/dist/tools/bdd/src/witness.d.ts +23 -0
- package/dist/tools/gallery/src/cli.js +4 -3
- package/dist/tools/gallery/src/cli.js.map +3 -3
- package/dist/tools/mutate/src/cli.js +8 -1
- package/dist/tools/mutate/src/cli.js.map +3 -3
- package/dist/tools/quality/src/cli.js +304 -15
- package/dist/tools/quality/src/cli.js.map +6 -4
- package/dist/tools/quality/src/index.d.ts +2 -0
- package/dist/tools/quality/src/index.js +309 -15
- package/dist/tools/quality/src/index.js.map +6 -4
- package/dist/tools/quality/src/no-fixed-waits.d.ts +52 -0
- package/dist/tools/quality/src/no-tautology-ensures.d.ts +67 -0
- package/dist/tools/quality/src/plugins/core.d.ts +1 -1
- package/dist/tools/test/src/coverage-policy/cli.js +5 -1
- package/dist/tools/test/src/coverage-policy/cli.js.map +3 -3
- package/dist/tools/test/src/tiers/args.d.ts +5 -0
- package/dist/tools/test/src/tiers/cli.js +97 -23
- package/dist/tools/test/src/tiers/cli.js.map +9 -8
- package/dist/tools/test/src/tiers/index.d.ts +2 -1
- package/dist/tools/test/src/tiers/order.d.ts +25 -0
- package/dist/tools/test/src/tiers/types.d.ts +15 -0
- package/dist/tools/verify/src/cli.js +540 -15
- package/dist/tools/verify/src/cli.js.map +8 -4
- package/dist/tools/visualize/src/cli.js +17 -13
- package/dist/tools/visualize/src/cli.js.map +3 -3
- package/package.json +9 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fairfox/polly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.83.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Multi-execution-context framework with reactive state and cross-context messaging for Chrome extensions, PWAs, and worker-based applications",
|
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
"import": "./dist/tools/mutate/src/index.js",
|
|
67
67
|
"types": "./dist/tools/mutate/src/index.d.ts"
|
|
68
68
|
},
|
|
69
|
+
"./bdd": {
|
|
70
|
+
"import": "./dist/tools/bdd/src/index.js",
|
|
71
|
+
"types": "./dist/tools/bdd/src/index.d.ts"
|
|
72
|
+
},
|
|
69
73
|
"./test": {
|
|
70
74
|
"import": "./dist/tools/test/src/index.js",
|
|
71
75
|
"types": "./dist/tools/test/src/index.d.ts"
|
|
@@ -156,25 +160,12 @@
|
|
|
156
160
|
"lint": "biome check .",
|
|
157
161
|
"lint:fix": "biome check --write .",
|
|
158
162
|
"format": "biome format --write .",
|
|
159
|
-
"test": "bun run
|
|
163
|
+
"test": "bun run test:tiers",
|
|
160
164
|
"test:watch": "bun run --cwd tests test:watch",
|
|
161
165
|
"test:all": "bun run lint && bun run typecheck && bun run --cwd tests test:all",
|
|
162
166
|
"test:tiers": "bun scripts/test/cli.ts",
|
|
163
|
-
"test:quick": "bun scripts/test/cli.ts unit integration",
|
|
164
|
-
"test:full": "bun scripts/test/cli.ts --full --json",
|
|
165
|
-
"test:browser": "bun scripts/test/cli.ts browser",
|
|
166
|
-
"test:coverage": "bun scripts/test/cli.ts coverage",
|
|
167
167
|
"test:e2e": "bun scripts/test/cli.ts e2e-cli e2e-relay e2e-mesh --json",
|
|
168
|
-
"test:
|
|
169
|
-
"test:e2e:cli": "bun scripts/test/cli.ts e2e-cli",
|
|
170
|
-
"test:e2e:relay": "bun scripts/test/cli.ts e2e-relay",
|
|
171
|
-
"test:e2e:mesh": "bun scripts/test/cli.ts e2e-mesh",
|
|
172
|
-
"test:e2e:mesh:fast": "bun scripts/test/cli.ts e2e-mesh --only=offline-online-drain",
|
|
173
|
-
"test:e2e:integration": "bun scripts/test/cli.ts e2e-mesh --only=elysia,extension",
|
|
174
|
-
"test:e2e:verify": "bun scripts/test/cli.ts verify",
|
|
175
|
-
"test:e2e:verify-mesh-seed": "bun scripts/test/cli.ts verify --only=mesh-seed",
|
|
176
|
-
"test:e2e:stryker": "bun scripts/test/cli.ts verify --only=stryker",
|
|
177
|
-
"test:e2e:visualize": "bun scripts/test/cli.ts verify --only=visualize",
|
|
168
|
+
"test:full": "bun scripts/test/cli.ts --full --json",
|
|
178
169
|
"check": "bun scripts/check.ts",
|
|
179
170
|
"coverage:enforce": "bun tools/test/src/coverage-policy/cli.ts --config scripts/coverage.config.ts --no-mutate",
|
|
180
171
|
"prepublishOnly": "bun run typecheck && bun run lint && bun run --cwd tests test && bun run build:lib",
|
|
@@ -209,6 +200,8 @@
|
|
|
209
200
|
"bun": ">=1.2.0"
|
|
210
201
|
},
|
|
211
202
|
"dependencies": {
|
|
203
|
+
"@cucumber/gherkin": "40.0.0",
|
|
204
|
+
"@cucumber/messages": "33.0.2",
|
|
212
205
|
"@preact/signals": "2.9.0",
|
|
213
206
|
"@preact/signals-core": "1.14.2",
|
|
214
207
|
"preact": "10.29.1",
|