test: route gateway HTTP history and startup wiring to e2e

This commit is contained in:
Peter Steinberger
2026-04-08 06:17:50 +01:00
parent abe7b2c49d
commit f4c64168e7
5 changed files with 23 additions and 5 deletions

View File

@@ -281,7 +281,11 @@ function classifyTarget(arg, cwd) {
if (relative.endsWith(".e2e.test.ts")) {
return "e2e";
}
if (relative === "src/gateway/gateway.test.ts") {
if (
relative === "src/gateway/gateway.test.ts" ||
relative === "src/gateway/server.startup-matrix-migration.integration.test.ts" ||
relative === "src/gateway/sessions-history-http.test.ts"
) {
return "e2e";
}
if (relative.startsWith("extensions/")) {