Skip to content

NUnitXML to Codewars converter for Pester

License

Notifications You must be signed in to change notification settings

codewars/Pester-Codewars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Pester-Codewars

ConvertTo-Codewars converts an NUnit 2.5-compatible XML-report to Codewars format.

Usage

Import-Module -Name Pester
Import-Module -Name Pester-Codewars

$config = New-PesterConfiguration
$config.Should.ErrorAction = 'Continue'
$config.Output.Verbosity = 'None'
$config.Run.PassThru = $true

Invoke-Pester -Configuration $config | ConvertTo-NUnitReport | ConvertTo-Codewars