An open API service indexing awesome lists of open source software.

https://github.com/codewars/pester-codewars

NUnitXML to Codewars converter for Pester
https://github.com/codewars/pester-codewars

code-runner test-reporting

Last synced: 10 months ago
JSON representation

NUnitXML to Codewars converter for Pester

Awesome Lists containing this project

README

          

# Pester-Codewars

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

## Usage

```powershell
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
```