File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/Components/test/E2ETest/Tests Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -857,10 +857,15 @@ public void InputRadioGroupWorksWithParentImplementingIHandleEvent(int n)
857
857
Browser . Equal ( n == 0 ? "True" : "False" , ( ) => zero . GetDomProperty ( "checked" ) ) ;
858
858
Browser . Equal ( "False" , ( ) => one . GetDomProperty ( "checked" ) ) ;
859
859
860
- // Observe that the value can be mutated by the setter, and this shows up in the DOM
860
+ // Observe the changes after a click
861
861
one . Click ( ) ;
862
862
Browser . Equal ( "False" , ( ) => zero . GetDomProperty ( "checked" ) ) ;
863
863
Browser . Equal ( "True" , ( ) => one . GetDomProperty ( "checked" ) ) ;
864
+
865
+ // Ensure other options can be selected
866
+ zero . Click ( ) ;
867
+ Browser . Equal ( "False" , ( ) => one . GetDomProperty ( "checked" ) ) ;
868
+ Browser . Equal ( "True" , ( ) => zero . GetDomProperty ( "checked" ) ) ;
864
869
}
865
870
866
871
[ Fact ]
You can’t perform that action at this time.
0 commit comments