feat: complete TASK-WP0-04 local data boundary

This commit is contained in:
suyx
2026-07-27 18:45:50 +08:00
parent 878788b1e2
commit b5a6c6629e
11 changed files with 1178 additions and 2 deletions
+4 -2
View File
@@ -14,7 +14,7 @@
"test:integration": "vitest run tests/integration",
"test:api": "pnpm check:openapi && vitest run tests/api",
"test:worker": "pnpm --filter @dada/worker build && node scripts/worker-smoke.mjs",
"test:e2e": "pnpm check:openapi && playwright test tests/e2e/event-sync.spec.ts tests/e2e/support-gate.spec.ts --config playwright.config.ts",
"test:e2e": "pnpm check:openapi && playwright test tests/e2e/event-sync.spec.ts tests/e2e/support-gate.spec.ts tests/e2e/local-data-boundary.spec.ts --config playwright.config.ts",
"test:visual": "node scripts/validate-layer-scope.mjs VISUAL",
"test:performance": "node scripts/validate-layer-scope.mjs PERFORMANCE",
"test:security": "node scripts/verify-frozen-dependencies.mjs && node scripts/redaction-scan.mjs",
@@ -26,7 +26,9 @@
"test:all": "pnpm test:unit && pnpm test:integration && pnpm test:api && pnpm test:worker && pnpm test:e2e && pnpm test:visual && pnpm test:performance && pnpm test:security && pnpm test:package && pnpm validate:tdd-trace",
"test:wp0-01": "node scripts/run-wp0-01-validation.mjs",
"test:wp0-02": "node scripts/run-wp0-02-validation.mjs",
"test:wp0-03": "node scripts/run-wp0-03-validation.mjs"
"test:wp0-03": "node scripts/run-wp0-03-validation.mjs",
"test:wp0-04": "node scripts/run-wp0-04-validation.mjs",
"test:wp0-04:red": "node scripts/run-wp0-04-validation.mjs --phase red"
},
"devDependencies": {
"@playwright/test": "1.62.0",