Skip to content

Commit

Permalink
chore: Adjust tests settings for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Nov 4, 2021
1 parent 6f30b05 commit 4f4d18b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace Windows.UI.Xaml.Tests.MUXControls.ApiTests.RepeaterTests
public class LayoutTests : MUXApiTestBase
{
[TestMethod]
#if __IOS__ || __ANDROID__
#if __IOS__ || __ANDROID__ || __WASM__
[Ignore("UNO: Test does not pass yet with Uno https://github.com/unoplatform/uno/issues/4529")]
#endif
public void ValidateMappingAndAutoRecycling()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ public Task When_Measure_And_Invalidate() =>

[TestMethod]
[RunsOnUIThread]
#if __ANDROID__
[Ignore]
#endif
public async Task When_InvalidateDuringMeasure_Then_GetReMeasured()
{
var sut = new ObservableLayoutingControl();
Expand All @@ -183,6 +186,9 @@ public async Task When_InvalidateDuringMeasure_Then_GetReMeasured()

[TestMethod]
[RunsOnUIThread]
#if __ANDROID__
[Ignore]
#endif
public async Task When_InvalidateDuringArrange_Then_GetReArranged()
{
var sut = new ObservableLayoutingControl();
Expand Down

0 comments on commit 4f4d18b

Please sign in to comment.