Notification Types
| Type | Delivery | Timing | Content |
|---|---|---|---|
| Run Completion | Slack | When run finishes (1+ tests) | Pass/fail status, duration, failed test details |
| Weekly Summary | Mondays 6 AM CET | Test statistics, pass rate, time saved, suggestions |
Slack Notifications
Setup
Configure Slack notifications in two steps:- Connect Slack at Organization Settings → Connections
- Select channel at Project Settings → Integrations → Slack
What You Get
Each notification includes:- Run status - Pass or fail with color coding
- Test plan name - If run was part of a test plan
- Timing - When started and total duration
- Failed tests - Detailed breakdown with clickable links
- Results link - Direct access to full test report
Per-Run Notification Overrides
When triggering test runs via the Start Run API, you can override the default Slack channel and send notifications to specific channels for that run. This is useful for:- PR-specific channels: When testing a pull request, send notifications to a dedicated Slack channel for that PR (e.g.,
#pr-123-frontend-tests) instead of the default project channel - Team-specific notifications: Route test results to team-specific channels (e.g., send frontend test results to
#frontend-teamand backend tests to#backend-team) so each team only sees relevant notifications - Failure-only channels: Set up channels that only receive notifications when tests fail (e.g.,
#alerts-critical-failures), reducing noise while ensuring failures are immediately visible
notifications array in your API request to specify which Slack channels should receive notifications for that run:
- Each channel can be configured with
notifyOn: "always"(default) to receive both start and finish notifications, ornotifyOn: "failure"to only receive finish notifications when the run result is notPASSED(i.e.,FAILED,SKIPPED, ornull) - When overrides are provided, the default project channel is skipped - only the specified channels receive notifications
- The QA.tech bot must already have access to all channels you specify
- Requires Slack integration to be configured for the project
Email Reports
Weekly reports provide a summary of testing activity and quality metrics to all organization members. When: Every Monday at 6 AM Central European TimeWho: All organization members
What You Get
- Tests executed count
- Pass percentage
- Time saved estimate
- Suggested new tests to add
- Summary of test runs