Skip to content

Commit

Permalink
chore: Disable some imagebrush tess
Browse files Browse the repository at this point in the history
(cherry picked from commit 620926c)
  • Loading branch information
jeromelaban committed Jun 13, 2024
1 parent 1e734dc commit 95388cb
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,21 @@ public class Given_ImageBrush
{
[DataRow(Stretch.Fill, false)]
[DataRow(Stretch.Fill, true)]
#if !__IOS__
// See https://github.com/unoplatform/uno/issues/9080
[DataRow(Stretch.UniformToFill, false)]
#endif
[DataRow(Stretch.UniformToFill, true)]
#if !__ANDROID__
// Stretch.None is broken on Android.
// See https://github.com/unoplatform/uno/pull/7238#issuecomment-937667565
[DataRow(Stretch.None, false)]
[DataRow(Stretch.None, true)]
#endif
#if !__IOS__
// See https://github.com/unoplatform/uno/issues/9080
[DataRow(Stretch.Uniform, false)]
#endif
[DataRow(Stretch.Uniform, true)]
[TestMethod]
public async Task When_Stretch(Stretch stretch, bool useRectangle)
Expand Down

0 comments on commit 95388cb

Please sign in to comment.