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
- Host: GitHub
- URL: https://github.com/codewars/pester-codewars
- Owner: codewars
- License: apache-2.0
- Created: 2022-01-18T01:35:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-18T01:54:49.000Z (almost 4 years ago)
- Last Synced: 2025-01-10T05:36:03.690Z (12 months ago)
- Topics: code-runner, test-reporting
- Language: PowerShell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```