Ignore/run-tests.ps1

$config = New-PesterConfiguration
$config.Run.Path = './Tests'
$config.Output.Verbosity = 'Detailed'
$config.TestResult.Enabled = $true
$config.TestResult.OutputPath = './Ignore/TestResults.xml'
Invoke-Pester -Configuration $config