test: move gateway e2e fixture out of unit lane

This commit is contained in:
Peter Steinberger
2026-04-08 05:57:36 +01:00
parent 825028289b
commit 993abc1fb9
6 changed files with 42 additions and 1 deletions

View File

@@ -174,6 +174,19 @@ describe("scripts/test-projects changed-target routing", () => {
},
]);
});
it("routes the gateway e2e fixture to the e2e lane", () => {
const plans = buildVitestRunPlans(["src/gateway/gateway.test.ts"], process.cwd());
expect(plans).toEqual([
{
config: "vitest.e2e.config.ts",
forwardedArgs: ["src/gateway/gateway.test.ts"],
includePatterns: null,
watchMode: false,
},
]);
});
});
describe("scripts/test-projects full-suite sharding", () => {