Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created July 11, 2022 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/dc12d14dc1ea44766b17f22244dc97cd to your computer and use it in GitHub Desktop.
Save bielawb/dc12d14dc1ea44766b17f22244dc97cd to your computer and use it in GitHub Desktop.
Uruchamianie testów w Pester 5
Invoke-Pester -Path .\Connect-EWSService.tests.ps1 -Output Detailed
$konfiguracja = [PesterConfiguration]@{
Run = @{
Path = '.\Connect-EWSService.tests.ps1'
}
Output = @{
Verbosity = 'Detailed'
}
}
Invoke-Pester -Configuration $konfiguracja
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment