Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ await contentViewHandler.PlatformView.AttachAndRun(async () =>
});
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/maui/issues/20533")]
public async Task DoneClosesKeyboard()
{
EnsureHandlerCreated(builder =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public async Task IsToggledDoesNotSetSameValue()
Assert.Equal(0, fireCount);
}

#if !WINDOWS
// WINDOWS: https://github.com/dotnet/maui/issues/20535
[Theory(DisplayName = "Track Color Initializes Correctly")]
[InlineData(true)]
//[InlineData(false)] // Track color is not always visible when off
Expand All @@ -53,6 +55,7 @@ await AttachAndRun(switchStub, async (handler) =>
await ValidateTrackColor(switchStub, Colors.Red);
});
}
#endif

[Fact(DisplayName = "Track Color Updates Correctly")]
public async Task TrackColorUpdatesCorrectly()
Expand Down