@testrevolution/bugbug-cli 7.15.1 → 7.17.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/jest.config.js +9 -1
- package/package.json +2 -1
- package/src/commands/help.js +1 -1
package/jest.config.js
CHANGED
|
@@ -106,7 +106,15 @@ module.exports = {
|
|
|
106
106
|
// projects: null,
|
|
107
107
|
|
|
108
108
|
// Use this configuration option to add custom reporters to Jest
|
|
109
|
-
|
|
109
|
+
reporters: ['default', ['jest-junit', {
|
|
110
|
+
outputDirectory: 'test-reports',
|
|
111
|
+
outputName: 'jest-junit.xml',
|
|
112
|
+
ancestorSeparator: ' › ',
|
|
113
|
+
uniqueOutputName: 'false',
|
|
114
|
+
suiteNameTemplate: '{filepath}',
|
|
115
|
+
classNameTemplate: '{classname}',
|
|
116
|
+
titleTemplate: '{title}',
|
|
117
|
+
}]],
|
|
110
118
|
|
|
111
119
|
// Automatically reset mock state between every test
|
|
112
120
|
// resetMocks: false,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testrevolution/bugbug-cli",
|
|
3
3
|
"description": "BugBug CLI",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.17.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
7
7
|
"cli",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"axios": "^1.6.2",
|
|
23
23
|
"console-table-printer": "^2.11.2",
|
|
24
24
|
"dotenv": "^16.3.1",
|
|
25
|
+
"jest-junit": "^16.0.0",
|
|
25
26
|
"junit-xml": "^1.2.0",
|
|
26
27
|
"minimist": "^1.2.8",
|
|
27
28
|
"ora": "^5.4.1",
|
package/src/commands/help.js
CHANGED
|
@@ -29,7 +29,7 @@ const help = {
|
|
|
29
29
|
* --no-progress - don't show progress spinner
|
|
30
30
|
* --no-wait - exit immediately, don't wait for result
|
|
31
31
|
* --profile <string:"profile name"> - run with specific profile
|
|
32
|
-
* --variable <string:"varName=varValue"> -
|
|
32
|
+
* --variable <string:"varName=varValue"> - override variable during single run
|
|
33
33
|
* --with-details - show result with details
|
|
34
34
|
* --result-timeout - modify the default result waiting time (minutes, default: 60)
|
|
35
35
|
`,
|