maester-tests/readme.txt
# Maester Tests
This folder contains the tests that Maester will run to validate your environment. The tests are organized into the following folders: - **Custom**: Place your custom Pester tests in this directory. The file name should end with `.Tests.ps1`. - **EIDSCA**: Contains the out of the box test for [Entra ID Security Config Analyzer](https://maester.dev/docs/tests/eidsca/). - **Maester**: Contains the tests that are built by the Maester team with contributions from the community. To learn more about the tests see [Maester Tests](https://maester.dev/docs/tests/maester). ## Running Maester To run the tests in this folder run the following PowerShell commands. To learn more see [maester.dev](https://maester.dev). ```powershell Connect-Maester Invoke-Maester ``` ## Keeping your Maester tests up to date The Maester team will add new tests over time. To get the latest updates, use the commands below to update this folder with the latest tests. - Update the `Maester` PowerShell module to the latest version and load it. - Run `Update-MaesterTests`. ```powershell Update-Module Maester -Force Import-Module Maester Update-MaesterTests ``` |