What problem does it solve?
This Skill helps you run unit tests, instrumentation tests, and Espresso UI tests for the Canvas Android apps (Student, Teacher, and Parent) directly from the repository root, accelerating quality assurance and ensuring reliable test results.
Core Features & Use Cases
- Unit Tests: Run all unit tests or targeted tests for specific modules or apps.
- Instrumentation/Espresso Tests: Execute UI tests on devices or emulators.
- Test Patterns & Use Cases: Use patterns, rerun options, and standard commands to streamline testing in CI and local workflows.
- Use Case: Quickly verify that a new feature passes both unit and UI tests before submitting a PR.
Quick Start
Student app - ./gradle/gradlew -p apps :student:testQaDebugUnitTest
Teacher app - ./gradle/gradlew -p apps :teacher:testQaDebugUnitTest
Parent app - ./gradle/gradlew -p apps :parent:testQaDebugUnitTest
All apps - ./gradle/gradlew -p apps :student:testQaDebugUnitTest :teacher:testQaDebugUnitTest :parent:testQaDebugUnitTest