test(docker): install procps for plugin watchdogs

This commit is contained in:
Vincent Koc
2026-05-01 06:08:23 -07:00
parent 25446d3c0e
commit 49b1770b8e
2 changed files with 10 additions and 3 deletions

View File

@@ -92,6 +92,12 @@ describe("docker build helper", () => {
);
});
it("includes procps in the shared Docker E2E image for process watchdogs", () => {
const dockerfile = readFileSync("scripts/e2e/Dockerfile", "utf8");
expect(dockerfile).toContain("procps");
});
it("preserves pnpm lookup paths for scheduled Docker child lanes", () => {
const scheduler = readFileSync(DOCKER_ALL_SCHEDULER_PATH, "utf8");