โœ… Regression Test Suite Template

# ๐Ÿงช Regression Test Suite

## Project Name: [Your Project Name]
## Release/Sprint: [v1.5.0 / Sprint 12]
## Prepared By: [Your Name]
## Date: [YYYY-MM-DD]
## Environment: [QA / Staging / UAT]

---

## ๐Ÿ” Objective
To ensure that previously developed and tested functionality works as expected after new changes (code fixes, enhancements, or integrations) are applied to the application.

---

## ๐Ÿ“˜ Scope

### In Scope:
- Core login and signup workflows
- Profile management
- Role-based access control
- Navigation and layout responsiveness

### Out of Scope:
- Billing module (not impacted in this release)
- Language/localization testing

---

## ๐Ÿ—‚๏ธ Test Case List

| TC ID     | Test Case Description                  | Module              | Priority | Status   | Automated | Remarks                         |
|-----------|-----------------------------------------|---------------------|----------|----------|-----------|----------------------------------|
| TC-001    | Login with valid credentials            | Authentication      | High     | โœ… Pass  | Yes       | Core user access check          |
| TC-004    | Login fails with wrong password         | Authentication      | High     | โœ… Pass  | Yes       | Negative scenario               |
| TC-012    | Update profile name                     | User Profile        | Medium   | โœ… Pass  | Yes       | UI + API flow                   |
| TC-015    | Change password                         | User Profile        | High     | โŒ Fail  | Yes       | Known bug โ€“ logged as BUG-102   |
| TC-028    | Dashboard access with expired session   | Access Control      | High     | โœ… Pass  | No        | Manual test, needs automation   |
| TC-036    | Mobile menu collapse/expand             | UI Responsiveness   | Medium   | โœ… Pass  | Yes       | Run on iPhone 13 emulator       |
| TC-044    | Create a task with attachments          | Task Management     | High     | โณ Not Executed | No  | Will be covered in next cycle   |

---

## ๐Ÿงช Summary

| Metric                     | Value     |
|----------------------------|-----------|
| Total Test Cases           | 7         |
| Passed                     | 5         |
| Failed                     | 1         |
| Not Executed               | 1         |
| Automation Coverage        | 71%       |
| Blocking Defects Found     | 1 (BUG-102) |

---

## ๐Ÿ“ Notes & Recommendations

- Password change flow must be retested after bug fix (BUG-102)
- Automate access control expiry scenario for future coverage
- Consider UI visual regression testing for responsive layouts

๐Ÿ“‹ Regression Test Suite โ€“ Excel/Google Sheets Format

TC IDTest Case DescriptionModulePriorityStatusAutomatedBug IDNotes
TC-001Login with valid credentialsAuthHighPassYesโ€“โ€“
TC-015Change password fails silentlyUser ProfileHighFailYesBUG-102Needs fix
TC-028Dashboard with expired sessionAccess ControlHighPassNoโ€“Add to Playwright backlog

๐Ÿงฉ When to Use This Template

  • โœ… Before every major release or deployment
  • โœ… After bug fixes or hotfixes
  • โœ… During sprint-end regression cycles
  • โœ… In CI/CD pipelines (e.g., GitHub Actions, Jenkins, GitLab CI)