We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e0e6c2 commit d3de3b1Copy full SHA for d3de3b1
Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Extensions/Invoke-ExecExtensionTest.ps1
@@ -55,6 +55,10 @@ Function Invoke-ExecExtensionTest {
55
$Results = [pscustomobject]@{'Results' = 'Failed to connect to Hudu' }
56
}
57
58
+ 'Sherweb' {
59
+ $token = Get-SherwebAuthentication
60
+ $Results = [pscustomobject]@{'Results' = 'Successfully Connected to Sherweb' }
61
+ }
62
63
} catch {
64
$Results = [pscustomobject]@{'Results' = "Failed to connect: $($_.Exception.Message) $($_.InvocationInfo.ScriptLineNumber)" }
0 commit comments