Skip to content

Commit

Permalink
Update EventTest.cs (#51141)
Browse files Browse the repository at this point in the history
  • Loading branch information
MackinnonBuck authored Oct 4, 2023
1 parent ee46ab5 commit e3a3257
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 @@ -215,8 +215,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));
}

// Skipped because it will never pass because Selenium doesn't support this kind of event
Expand Down

0 comments on commit e3a3257

Please sign in to comment.