qaguardian 2.0.0 → 2.1.1
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# QA Guardian Command Line Interface
|
|
2
2
|
|
|
3
3
|
Trigger and monitor test suite executions from the command line.
|
|
4
4
|
|
|
@@ -106,7 +106,7 @@ npx qaguardian --tags regression --notify teams
|
|
|
106
106
|
### Local development
|
|
107
107
|
|
|
108
108
|
```bash
|
|
109
|
-
cd
|
|
109
|
+
cd qaguardian
|
|
110
110
|
npm install
|
|
111
111
|
npm link
|
|
112
112
|
export QAGUARDIAN_API_KEY=your-api-key
|
|
@@ -141,7 +141,7 @@ The CLI can send notifications when test suites complete. Choose one of:
|
|
|
141
141
|
Send results to any HTTP endpoint:
|
|
142
142
|
|
|
143
143
|
```bash
|
|
144
|
-
|
|
144
|
+
qaguardian --tags regression --webhook-url https://my-service.com/webhook
|
|
145
145
|
```
|
|
146
146
|
|
|
147
147
|
The webhook receives a POST request with execution results.
|
|
@@ -158,7 +158,7 @@ Integrated notification support for popular chat and communication platforms:
|
|
|
158
158
|
Example:
|
|
159
159
|
|
|
160
160
|
```bash
|
|
161
|
-
|
|
161
|
+
qaguardian --tags smoke --notify slack
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
Notifications are sent when all tests complete, with summary of pass/fail counts.
|