File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
src/Components/test/E2ETest/Tests Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments