Skip to content

Commit 5d7eb68

Browse files
committed
Editing the ongoing render batch is not possible - for non-streaming SSR renders re-execution should be used.
1 parent a3ca937 commit 5d7eb68

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

src/Components/test/E2ETest/Tests/GlobalInteractivityTest.cs

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,16 @@ public class GlobalInteractivityTest(
2222
{
2323

2424
[Theory]
25-
[InlineData("server", true)]
26-
[InlineData("webassembly", true)]
27-
[InlineData("ssr", false)]
28-
public void CanRenderNotFoundInteractive(string renderingMode, bool isInteractive)
25+
[InlineData("server")]
26+
[InlineData("webassembly")]
27+
[InlineData("ssr")]
28+
public void CanRenderNotFoundInteractive(string renderingMode)
2929
{
3030
Navigate($"/subdir/render-not-found-{renderingMode}");
3131

32-
if (isInteractive)
33-
{
34-
var buttonId = "trigger-not-found";
35-
Browser.WaitForElementToBeVisible(By.Id(buttonId));
36-
Browser.Exists(By.Id(buttonId)).Click();
37-
}
32+
var buttonId = "trigger-not-found";
33+
Browser.WaitForElementToBeVisible(By.Id(buttonId));
34+
Browser.Exists(By.Id(buttonId)).Click();
3835

3936
var bodyText = Browser.FindElement(By.TagName("body")).Text;
4037
Assert.Contains("There's nothing here", bodyText);

0 commit comments

Comments
 (0)