Initial commit
This commit is contained in:
15
bin/test.ps1
Normal file
15
bin/test.ps1
Normal file
@@ -0,0 +1,15 @@
|
||||
#Requires -Version 5.1
|
||||
#Requires -Modules @{ ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.1' }
|
||||
#Requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '5.2.0' }
|
||||
|
||||
$pesterConfig = New-PesterConfiguration -Hashtable @{
|
||||
Run = @{
|
||||
Path = "$PSScriptRoot/.."
|
||||
PassThru = $true
|
||||
}
|
||||
Output = @{
|
||||
Verbosity = 'Detailed'
|
||||
}
|
||||
}
|
||||
$result = Invoke-Pester -Configuration $pesterConfig
|
||||
exit $result.FailedCount
|
||||
Reference in New Issue
Block a user