Skip to content

Commit

Permalink
Merge pull request #4470 from Borgquite/integration-tests
Browse files Browse the repository at this point in the history
Update integration tests to also check Get-TargetResource
  • Loading branch information
NikCharlebois authored Mar 21, 2024
2 parents 9e7b2e6 + b7abd24 commit 9e39534
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/Global - Integration - AAD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ jobs:
{
Write-Host "All resources in the Tenant are in the Desired State"
}
try
{
$Result = Get-DSCConfiguration -Verbose -ErrorAction Stop
}
catch
{
throw $_
}
- name: Generate {Update} Integration Tests from Examples
shell: powershell
run: |
Expand Down Expand Up @@ -146,6 +155,15 @@ jobs:
{
Write-Host "All resources in the Tenant are in the Desired State"
}
try
{
$Result = Get-DSCConfiguration -Verbose -ErrorAction Stop
}
catch
{
throw $_
}
- name: Generate {Remove} Integration Tests from Examples
shell: powershell
run: |
Expand Down Expand Up @@ -205,3 +223,11 @@ jobs:
Write-Host "All resources in the Tenant are in the Desired State"
}
try
{
$Result = Get-DSCConfiguration -Verbose -ErrorAction Stop
}
catch
{
throw $_
}

0 comments on commit 9e39534

Please sign in to comment.