From 703395f1ea93be5e6ad08c82ee46fe936c981f5c Mon Sep 17 00:00:00 2001 From: Haritha <73516759+HarithaVattikuti@users.noreply.github.com> Date: Tue, 13 Jan 2026 15:23:46 -0600 Subject: [PATCH] Update comment to reflect the correct directory Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/Node.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Node.Tests.ps1 b/tests/Node.Tests.ps1 index 94e4cc2..5945bdd 100644 --- a/tests/Node.Tests.ps1 +++ b/tests/Node.Tests.ps1 @@ -15,7 +15,7 @@ Describe "Node.js" { # Go up two directories to get runner root $runnerRoot = Split-Path (Split-Path $runnerProc.Path -Parent) -Parent #Write-Host "`$runnerRoot: $runnerRoot" - # Recursively find all _diag/pages folders under $homeDir(not homedir-replace with runnerroot) + # Recursively find all _diag/pages folders under the runner root directory $possiblePaths = Get-ChildItem -Path $runnerRoot -Directory -Recurse -ErrorAction SilentlyContinue | Where-Object { $_.FullName -like "*_diag\pages" -or $_.FullName -like "*_diag/pages" } Write-Host "`LogsPaths:"