From b7edddf553a8aa3d3ceff8d4f4b70023b4b5f118 Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Wed, 26 Oct 2022 15:53:15 +0200 Subject: [PATCH] [Windows] Check WSL is on path on Windows Server 2022 (#6475) --- images/win/scripts/Tests/WindowsFeatures.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Tests/WindowsFeatures.Tests.ps1 b/images/win/scripts/Tests/WindowsFeatures.Tests.ps1 index 14b708f9..a170e6cd 100644 --- a/images/win/scripts/Tests/WindowsFeatures.Tests.ps1 +++ b/images/win/scripts/Tests/WindowsFeatures.Tests.ps1 @@ -10,7 +10,7 @@ Describe "WindowsFeatures" { } } - it "Check WSL is on path" -Skip:(-not (Test-IsWin19)) { + it "Check WSL is on path" { (Get-Command -Name 'wsl') | Should -BeTrue } }