Skip to content

Commit b996220

Browse files
Update DetailView.cs
1 parent 2d7b021 commit b996220

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

AudioCuesheetEditor.End2EndTests/Models/DetailView.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ internal async Task EditTrackAsync(string? artist = null, string? title = null)
5151
// Autocomplete overlay will pop up, so we close it
5252
await _page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Visible });
5353
await _page.Keyboard.PressAsync("Escape");
54-
await Task.WhenAll(
55-
[
56-
_page.Locator(".mud-overlay").WaitForAsync(new() { State = WaitForSelectorState.Detached, Timeout = 5000 }),
57-
_page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Hidden, Timeout = 5000 }),
58-
]);
5954
// Click outside the autocomplete to have an focus lost event for getting the value written to model
6055
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync();
6156
await _page.WaitForTimeoutAsync(100);
@@ -67,11 +62,6 @@ await Task.WhenAll(
6762
// Autocomplete overlay will pop up, so we close it
6863
await _page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Visible });
6964
await _page.Keyboard.PressAsync("Escape");
70-
await Task.WhenAll(
71-
[
72-
_page.Locator(".mud-overlay").WaitForAsync(new() { State = WaitForSelectorState.Detached, Timeout = 5000 }),
73-
_page.Locator(".mud-popover-open").WaitForAsync(new() { State = WaitForSelectorState.Hidden, Timeout = 5000 }),
74-
]);
7565
// Click outside the autocomplete to have an focus lost event for getting the value written to model
7666
await _page.GetByRole(AriaRole.Heading, new() { Name = "Playback" }).ClickAsync();
7767
await _page.WaitForTimeoutAsync(100);

0 commit comments

Comments
 (0)