maester-tests/cis/Test-MtCisTeamsReportSecurityConcerns.Tests.ps1

Describe "CIS" -Tag "CIS.M365.8.6.1", "L1", "CIS E3 Level 1", "CIS E3", "CIS", "Security", "CIS M365 v5.0.0" {
    It "CIS.M365.8.6.1: (L1) Ensure users can report security concerns in Teams to internal destination" {

        $result = Test-MtCisTeamsReportSecurityConcerns

        if ($null -ne $result) {
            $result | Should -Be $true -Because "report security concerns in Teams is only to internal destination."
        }
    }
}