@fairfox/polly 0.82.0 → 0.82.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fairfox/polly",
3
- "version": "0.82.0",
3
+ "version": "0.82.1",
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",
@@ -156,25 +156,12 @@
156
156
  "lint": "biome check .",
157
157
  "lint:fix": "biome check --write .",
158
158
  "format": "biome format --write .",
159
- "test": "bun run --cwd tests test",
159
+ "test": "bun run test:tiers",
160
160
  "test:watch": "bun run --cwd tests test:watch",
161
161
  "test:all": "bun run lint && bun run typecheck && bun run --cwd tests test:all",
162
162
  "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
163
  "test:e2e": "bun scripts/test/cli.ts e2e-cli e2e-relay e2e-mesh --json",
168
- "test:e2e:full": "bun scripts/test/cli.ts e2e-cli e2e-relay browser e2e-mesh verify --json",
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",
164
+ "test:full": "bun scripts/test/cli.ts --full --json",
178
165
  "check": "bun scripts/check.ts",
179
166
  "coverage:enforce": "bun tools/test/src/coverage-policy/cli.ts --config scripts/coverage.config.ts --no-mutate",
180
167
  "prepublishOnly": "bun run typecheck && bun run lint && bun run --cwd tests test && bun run build:lib",