Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/build_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Screenshots-${{ github.run_number }}
path: ${{ github.workspace }}\MaterialDesignThemes.UITests\bin\${{ inputs.build-configuration }}\net6.0-windows\Screenshots
path: ${{ github.workspace }}\MaterialDesignThemes.UITests\bin\${{ inputs.build-configuration }}\net7.0-windows\Screenshots
if-no-files-found: ignore

- name: Build NuGets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ await Wait.For(async () =>
Assert.True(await contentCover.GetOpacity() > 0.0);
});

//Wait before clicking so the animations have time to finish
await Task.Delay(100);

await drawerHost.LeftClick();

await Wait.For(async () => await contentCover.GetOpacity() <= 0.0);
Expand Down