mirror of
https://github.com/qwjyh/scoop_bucket.git
synced 2025-06-30 00:39:20 +09:00
Initial commit
This commit is contained in:
commit
ff5c60e225
29 changed files with 547 additions and 0 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue