9 lines
151 B
PowerShell
9 lines
151 B
PowerShell
|
<#
|
||
|
.SYNOPSIS
|
||
|
Execute Pester tests in repository root directory.
|
||
|
#>
|
||
|
|
||
|
$result = Invoke-Pester "$PSScriptRoot\.." -PassThru
|
||
|
|
||
|
exit $result.FailedCount
|