You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have functions named "Get-MyFunction" and "Get-MyFunctionAdvanced" and you have test files "Get-MyFunction.Test.ps1" and "Get-MyFunctionAdvanced.Test.ps1". The match for "Get-MyFunction" will pick up both test files.
I resolved it with the following so it includes the '.' on the match:
Sorry about all the open/closes. I finally figured out the issue in my tests. It stems from the -match statement on line 62:
If you have functions named "Get-MyFunction" and "Get-MyFunctionAdvanced" and you have test files "Get-MyFunction.Test.ps1" and "Get-MyFunctionAdvanced.Test.ps1". The match for "Get-MyFunction" will pick up both test files.
I resolved it with the following so it includes the '.' on the match:
The text was updated successfully, but these errors were encountered: