Framework Mode - Pair testing
Folder Structure for Pair Testing Sessions
pair-testing-project/ ├── session-notes/ │ ├── 2024-06-01-login-feature.md │ ├── 2024-06-02-shopping-cart.md │ └── README.md ├── test-scripts/ │ ├── login-tests.js │ ├── cart-tests.js │ └── utils.js ├── tools/ │ ├── screen-recorder.sh │ └── timer.js ├── reports/ │ ├── 2024-06-01-report.html │ └── 2024-06-02-report.html └── README.md
This simple structure supports collaborative testing sessions by organizing notes, scripts, tools, and reports clearly.