Skip to content

Commit e3a3257

Browse files
Update EventTest.cs (#51141)
1 parent ee46ab5 commit e3a3257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ public void DragDrop_CanTrigger()
215215
var actions = new Actions(Browser).DragAndDrop(input, target);
216216

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

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

0 commit comments

Comments
 (0)