8 lines
222 B
PowerShell
8 lines
222 B
PowerShell
|
|
$commonPackages = (Get-ToolsetContent).choco.common_packages
|
||
|
|
|
||
|
|
foreach ($package in $commonPackages)
|
||
|
|
{
|
||
|
|
Choco-Install -PackageName $package.name -ArgumentList $package.args
|
||
|
|
}
|
||
|
|
|
||
|
|
Invoke-PesterTests -TestFile "ChocoPackages"
|