Skip to content

Commit

Permalink
Tests should pass this time!
Browse files Browse the repository at this point in the history
  • Loading branch information
Di Da committed Dec 13, 2019
1 parent ed5818a commit b6aedd8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[Windows.UI.Xaml.Controls.Border]
ActualOffset=<0, 0, 0>
Background=#FFFFFF00
BorderBrush=#5500FF00
BorderThickness=10,10,10,10
Expand All @@ -14,7 +13,6 @@
Visibility=Visible
Width=500
[react.uwp.ViewPanel]
ActualOffset=<10, 10, 0>
Background=[NULL]
BorderBrush=#5500FF00
BorderThickness=10,10,10,10
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[react.uwp.ViewPanel]
ActualOffset=<0, 0, 0>
Background=#FFFFFF00
BorderBrush=#00000000
BorderThickness=0,0,0,0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[Windows.UI.Xaml.Controls.Border]
ActualOffset=<0, 0, 0>
Background=#FFFFFF00
BorderBrush=[NULL]
BorderThickness=0,0,0,0
Expand All @@ -14,7 +13,6 @@
Visibility=Visible
Width=500
[react.uwp.ViewPanel]
ActualOffset=<0, 0, 0>
Background=[NULL]
BorderBrush=#00000000
BorderThickness=0,0,0,0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ private async Task MatchDump(string dumpText)
{
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"Assets\TreeDump\" + m_dumpID + ".txt");
m_dumpExpectedText = await Windows.Storage.FileIO.ReadTextAsync(file);

StorageFolder storageFolder = ApplicationData.Current.LocalFolder;
string copyFileName = "TreeDump\\" + m_dumpID + ".txt";
var copyDumpFile = await storageFolder.CreateFileAsync(copyFileName, CreationCollisionOption.ReplaceExisting);
await Windows.Storage.FileIO.WriteTextAsync(copyDumpFile, m_dumpExpectedText);
}
catch (IOException)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static void WalkThroughTree(DependencyObject node, DependencyObject excl
public sealed class DefaultFilter
{
private List<string> _propertyNameWhiteList = new List<string> {"Foreground", "Background", "Padding", "Margin", "RenderSize", "Visibility", "CornerRadius", "BorderThickness",
"Width", "Height", "BorderBrush", "VerticalAlignment", "HorizontalAlignment", "Clip", "ActualOffset"};
"Width", "Height", "BorderBrush", "VerticalAlignment", "HorizontalAlignment", "Clip", /*"ActualOffset" 19h1*/};

public bool ShouldVisitPropertyValue(string propertyValue)
{
Expand Down

0 comments on commit b6aedd8

Please sign in to comment.