Streamline your testing. Store, organize, and manage all test cases in one place
EXPLORER
- 📁 features
- tcms.feature
- 📁 step_definitions
- tcms.ts
Feature: Test Management Dashboard
As a QA engineer
I want to manage test plans, test cases, and reports
So that I can efficiently track project quality
Scenario: Create a new test plan
Given user is on test plan page
When clicks "New Test Plan"
And fills name and description
Then test plan is created
Scenario: Add and manage test cases
Given a test plan exists
When adds new test cases
And edits or deletes existing ones
Then test cases are updated
Scenario: View reports
Given tests completed
When opens report section
Then shows summary and results
Scenario: Assign test cases
Given multiple test cases
When assigns to team members
Then users see their test cases
Scenario: Automatic notifications
Given tests completed
When system generates results
Then users get notification email
Scenario: Filter and search
Given 50+ test cases
When filters by "Failed" and searches "Login"
Then shows matching cases only