Disable Pester test colors (#6908)

This commit is contained in:
Alexey-Ayupov
2023-01-12 22:26:45 +03:00
committed by GitHub
parent a22d921c17
commit 7750a08f65
3 changed files with 4 additions and 4 deletions

View File

@@ -20,10 +20,10 @@ function Invoke-PesterTests {
if (!(Get-Module "Pester")) {
Import-Module Pester
}
$configuration = [PesterConfiguration] @{
Run = @{ Path = $testPath; PassThru = $true }
Output = @{ Verbosity = "Detailed" }
Output = @{ Verbosity = "Detailed"; RenderMode = "Plaintext" }
}
if ($TestName) {
$configuration.Filter.FullName = $TestName