# aem-guides-it-tests **Repository Path**: mirrors_adobe/aem-guides-it-tests ## Basic Information - **Project Name**: aem-guides-it-tests - **Description**: AEM Guides IT Tests suite, used to test and validate new AEMaaCS release deployments. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-17 - **Last Updated**: 2026-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AEM Guides IT Tests AEM Guides is an Addon on top of AEM on cloud. New releases are pushed to customers automatically without any manual efforts. To ensure a smooth and validated release to customer's environments, AEM Guides team has created a set of tests which can be executed as part of customer upgrade workflows. ## Running these tests as part of customer release pipeline Add dependency of our tests to in your it.tests module's pom.xml ``` com.adobe.aem.addon.guides aem-guides-it-tests 0.0.6 ``` Add the below configuration to your maven-failsafe-plugin ``` com.adobe.aem.addon.guides:aem-guides-it-tests ``` Refer the below snippet to figure out where to add the above configuration ``` default-integration-test integration-test **/*IT.java com.adobe.aem.addon.guides:aem-guides-it-tests ``` ## Writing your own tests Customers can choose to take inspiration from these tests to write their additional tests, in which case the above steps of including the dependeny and adding scan configuration can be skipped. ## How to run tests locally? ``` mvn clean verify -Plocal ```