@testrevolution/bugbug-cli 10.6.0 → 12.0.0

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 CHANGED
@@ -34,9 +34,10 @@ bugbug remote <option>
34
34
 
35
35
  options:
36
36
  * list [test|suite|profile] [--no-wait] [--no-progress] [--debug]
37
- * run [test|suite] <string:testId|suiteId> [--no-wait] [--no-progress] [--debug] [--with-details] [--profile] [--variable] [--reporter] [--output-path]
37
+ * run [test|suite] <string:testId|suiteId> [--no-wait] [--no-progress] [--debug] [--with-details] [--profile] [--variable] [--result-timeout <int>] [--reporter] [--output-path]
38
38
  * status [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug]
39
- * result [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug] [--with-details]
39
+ * result [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug] [--with-details] [--result-timeout <int>]
40
+ * stop [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug] [--result-timeout <int>]
40
41
 
41
42
  optional flags:
42
43
  * --debug - show more data (like raw API response)
@@ -47,6 +48,7 @@ optional flags:
47
48
  * --with-details - show result with details
48
49
  * --reporter <"inline"|"junit"> - the name of the reporter to use (default: "inline")
49
50
  * --output-path - the path to save the test report; relative to the current working directory
51
+ * --result-timeout - modify the default result waiting time (minutes, default: 60)
50
52
  ```
51
53
 
52
54
  Run test:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@testrevolution/bugbug-cli",
3
3
  "description": "BugBug CLI",
4
- "version": "10.6.0",
4
+ "version": "12.0.0",
5
5
  "keywords": [
6
6
  "automation",
7
7
  "cli",
@@ -18,16 +18,16 @@
18
18
  "bugbug": "bin/bugbug"
19
19
  },
20
20
  "dependencies": {
21
- "@sentry/node": "^8.39.0",
22
- "axios": "^1.7.7",
21
+ "@sentry/node": "^8.55.0",
22
+ "axios": "^1.8.4",
23
23
  "console-table-printer": "^2.12.1",
24
- "dotenv": "^16.4.5",
24
+ "dotenv": "^16.4.7",
25
25
  "jest-junit": "^16.0.0",
26
26
  "junit-xml": "^1.2.0",
27
27
  "minimist": "^1.2.8",
28
28
  "ora": "^5.4.1",
29
29
  "path": "^0.12.7",
30
- "validator": "^13.12.0"
30
+ "validator": "^13.15.0"
31
31
  },
32
32
  "scripts": {
33
33
  "start": "cross-env NODE_ENV=development node ./bin/bugbug",
@@ -48,9 +48,9 @@
48
48
  "eslint": "^8.57.1",
49
49
  "eslint-config-airbnb-base": "^15.0.0",
50
50
  "eslint-plugin-import": "^2.31.0",
51
- "eslint-plugin-jest": "^28.9.0",
51
+ "eslint-plugin-jest": "^28.11.0",
52
52
  "eslint-plugin-node": "^11.1.0",
53
53
  "jest": "^29.7.0"
54
54
  },
55
55
  "author": "TestRevolution sp. z o.o."
56
- }
56
+ }
@@ -20,7 +20,7 @@ const help = {
20
20
 
21
21
  options:
22
22
  * list [test|suite|profile] [--no-wait] [--no-progress] [--debug]
23
- * run [test|suite] <string:testId|suiteId> [--no-wait] [--no-progress] [--debug] [--with-details] [--profile] [--variable] [--result-timeout <int>]
23
+ * run [test|suite] <string:testId|suiteId> [--no-wait] [--no-progress] [--debug] [--with-details] [--profile] [--variable] [--result-timeout <int>] [--reporter] [--output-path]
24
24
  * status [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug]
25
25
  * result [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug] [--with-details] [--result-timeout <int>]
26
26
  * stop [test|suite] <string:testRunId|suiteRunId> [--no-progress] [--debug] [--result-timeout <int>]
@@ -32,6 +32,8 @@ const help = {
32
32
  * --profile <string:"profile name"> - run with specific profile
33
33
  * --variable <string:"varName=varValue"> - override variable during single run
34
34
  * --with-details - show result with details
35
+ * --reporter <"inline"|"junit"> - the name of the reporter to use (default: "inline")
36
+ * --output-path - the path to save the test report; relative to the current working directory
35
37
  * --result-timeout - modify the default result waiting time (minutes, default: 60)
36
38
  `,
37
39
  };