Skip to content

Commit

Permalink
Fix integ
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Mar 9, 2025
1 parent 8c6ad24 commit 99b8acc
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ BeforeDiscovery {
Describe 'Get-SqlDscRSSetupConfiguration' {
Context 'When getting the configuration for SQL Server Reporting Services instance' -Tag @('Integration_SQL2017_RS') {
It 'Should return the correct configuration for SSRS instance' {
Write-Verbose -Message ((reg query "HKLM\SOFTWARE\Microsoft\Microsoft SQL Server" /s) | Out-String) -Verbose

# Get the SSRS configuration
$result = Get-SqlDscRSSetupConfiguration -InstanceName 'SSRS'

Expand All @@ -46,6 +48,8 @@ Describe 'Get-SqlDscRSSetupConfiguration' {

Context 'When getting the configuration for SQL Server Reporting Services instance' -Tag @('Integration_SQL2019_RS') {
It 'Should return the correct configuration for SSRS instance' {
Write-Verbose -Message ((reg query "HKLM\SOFTWARE\Microsoft\Microsoft SQL Server" /s) | Out-String) -Verbose

# Get the SSRS configuration
$result = Get-SqlDscRSSetupConfiguration -InstanceName 'SSRS'

Expand All @@ -66,6 +70,8 @@ Describe 'Get-SqlDscRSSetupConfiguration' {

Context 'When getting the configuration for SQL Server Reporting Services instance' -Tag @('Integration_SQL2022_RS') {
It 'Should return the correct configuration for SSRS instance' {
Write-Verbose -Message ((reg query "HKLM\SOFTWARE\Microsoft\Microsoft SQL Server" /s) | Out-String) -Verbose

# Get the SSRS configuration
$result = Get-SqlDscRSSetupConfiguration -InstanceName 'SSRS'

Expand Down

0 comments on commit 99b8acc

Please sign in to comment.