Skip to content

Commit

Permalink
Update EventTest.cs (#51142)
Browse files Browse the repository at this point in the history
  • Loading branch information
MackinnonBuck committed Oct 4, 2023
1 parent 1a6ffea commit 9104f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/test/E2ETest/Tests/EventTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ public void DragDrop_CanTrigger()
var actions = new Actions(Browser).DragAndDrop(input, target);

actions.Perform();
// drop doesn't seem to trigger in Selenium. But it's sufficient to determine "any" drag event works
Browser.Equal("dragstart,", () => output.Text);
// drop doesn't reliably trigger in Selenium. But it's sufficient to determine "any" drag event works
Browser.True(() => output.Text.StartsWith("dragstart,", StringComparison.Ordinal));
}

[Fact]
Expand Down

0 comments on commit 9104f71

Please sign in to comment.