@flash-ai-team/flash-test-framework 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,9 +18,18 @@ Then you can use:
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
flash-test init <project-name>
|
|
21
|
+
flash-test history [suite-name]
|
|
21
22
|
flash-test --version
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
### Commands
|
|
26
|
+
|
|
27
|
+
* `init <project-name>`: Initialize a new project structure.
|
|
28
|
+
* `history [suite-name]`: View historical test runs and open the HTML dashboard.
|
|
29
|
+
* Example: `flash-test history` (All suites)
|
|
30
|
+
* Example: `flash-test history parallel_suite` (Specific suite)
|
|
31
|
+
* `--version`: Show CLI version.
|
|
32
|
+
|
|
24
33
|
1. **Initialize a new project**:
|
|
25
34
|
Make a new folder and run:
|
|
26
35
|
```bash
|