Public/Deploying/Test-EdenServiceFeaturesStaging.ps1
function Test-EdenServiceFeaturesStaging { <# .SYNOPSIS Testing features in staging. .DESCRIPTION Testing features in staging. by calling the local './Eden/Deploying/Test-ServiceFeaturesStaging.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "Deploying/Test-ServiceFeaturesStaging" ` -SettingsName $SettingsName ` -CommandGroup "Deploying" ` -Message "Testing features in staging." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-dpt ` -Value Test-EdenServiceFeaturesStaging ` -Force |