We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76da584 commit af2af6eCopy full SHA for af2af6e
integration-test/cli.Tests.ps1
@@ -182,6 +182,8 @@ Describe 'MAUI (<framework>)' -ForEach @(
182
'Microsoft.Maui.pdb',
183
'Sentry'
184
)
185
- $result.ScriptOutput | Should -AnyElementMatch "Found 77 debug information files \(8 with embedded sources\)"
+ # The specific number of debug information files seems to change with different SDK - so we just check for non-zero
186
+ $nonZeroNumberRegex = '[1-9][0-9]*';
187
+ $result.ScriptOutput | Should -AnyElementMatch "Found $nonZeroNumberRegex debug information files \($nonZeroNumberRegex with embedded sources\)"
188
}
189
0 commit comments