Rust library to generate static websites

fix: update hot reload tests

+4 -2
+4 -2
e2e/tests/hot-reload.spec.ts
··· 134 134 const hasRerunMessage = logsText.toLowerCase().includes("rerunning binary"); 135 135 expect(hasRerunMessage).toBe(true); 136 136 137 - // Should NOT see "rebuilding" message 138 - expect(logsText.toLowerCase()).not.toContain("rebuilding"); 137 + // Should NOT see cargo-related rebuild messages (compiling, building crate) 138 + // Note: "Rebuilding N affected routes" is fine - that's the incremental build system 139 + expect(logsText.toLowerCase()).not.toContain("compiling"); 140 + expect(logsText.toLowerCase()).not.toContain("cargo build"); 139 141 }); 140 142 141 143 test("should show updated content after file changes", async ({ page, devServer }) => {