From 52a97dae0923c449eede9e49c6fe59ffc0aa0702 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Wed, 7 Jan 2026 23:05:41 +0200 Subject: [PATCH] Delete Test-WingetInstall.ps1 (#3838) Co-authored-by: Gabi <218829269+Gabynun@users.noreply.github.com> --- Test-WingetInstall.ps1 | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Test-WingetInstall.ps1 diff --git a/Test-WingetInstall.ps1 b/Test-WingetInstall.ps1 deleted file mode 100644 index 060e2592..00000000 --- a/Test-WingetInstall.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# Import the function (adjust the path according to your setup) -. "./functions/private/Install-WinUtilWinget.ps1" -. "./functions/private/Test-WinUtilPackageManager.ps1" - -# Set up Information stream to be visible -$InformationPreference = "Continue" - -Write-Host "Starting Winget installation test..." -ForegroundColor Cyan - -try { - Install-WinUtilWinget -} catch { - Write-Host "Error occurred during testing: $($_.Exception.Message)" -ForegroundColor Red - Write-Host "Stack Trace:" -ForegroundColor Red - $_.ScriptStackTrace -}