Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:02:48 +08:00
commit b79afb344c
15 changed files with 973 additions and 0 deletions

10
commands/e2e-test/plan.md Normal file
View File

@@ -0,0 +1,10 @@
# Usage
```bash
/e2e-test:plan
```
## Execution
1. Explore **$ARGUMENTS** website and gathering information about its functionalities with e2e-test-qa subagent.
2. With the gathered data, plan e2e test scenarios for later implementation into @test_plan.md file with e2e-test-planner subagent.

View File

@@ -0,0 +1,16 @@
# Usage
```bash
/e2e-test:write
```
Or, to focus on a specific section of the test plan:
```bash
/e2e-test:write [test_plan_section]
```
## Execution
1. Read the @test_plan.md in the project root directory and create e2e playwright test scenarios based on unmarked items and prompted plan sections `[test_plan_section]` with e2e-test-writer subagent.
2. After finishing creating the tests, update the @test_plan.md file by marking the completed items with a checkmark.