Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Jun 21, 2024
1 parent f1dfe50 commit 831529a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Actions/AnalyzeTests/TestResultAnalyzer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function GetTestResultSummaryMD {
$appTime = 0.0
$appFailed = 0
$appSkipped = 0
$suites = $testResults.testsuites.testsuite | where-Object { $_.Properties.property | Where-Object { $_.Name -eq 'appName' -and $_.Value -eq $appName } }
$suites = $testResults.testsuites.testsuite | where-Object { $_.Properties.property | Where-Object { ($_.Name -eq 'appName' -or $_.Name -eq 'extensionId') -and $_.Value -eq $appName } }
foreach($suite in $suites) {
$appTests += [int]$suite.tests
$appFailed += [int]$suite.failures
Expand Down

0 comments on commit 831529a

Please sign in to comment.