We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 161a13b commit b5a44b8Copy full SHA for b5a44b8
integration/vite-hmr-hdr-test.ts
@@ -352,6 +352,9 @@ async function workflow({
352
await expect(hdrStatus).toHaveText(
353
"HDR updated: route & direct 2 & indirect 2",
354
);
355
- await expect(input).toHaveValue("stateful");
+ // TODO: Investigate why this is flaky in CI for RSC Framework Mode
356
+ if (!templateName.includes("rsc")) {
357
+ await expect(input).toHaveValue("stateful");
358
+ }
359
expect(page.errors).toEqual([]);
360
}
0 commit comments