File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ Or you can define your options in your reporter configuration.
108
108
``` js
109
109
// jest.config.js
110
110
{
111
- reporters: [
112
- " default" ,
113
- [ " jest-junit" , { suiteName: " jest tests" } ]
111
+ reporters: [
112
+ " default" ,
113
+ [ " jest-junit" , { suiteName: " jest tests" } ]
114
114
]
115
115
}
116
116
```
@@ -235,9 +235,9 @@ New feature as of jest-junit 11.0.0!
235
235
Create a file in your project root directory named junitProperties.js:
236
236
``` js
237
237
module .exports = () => {
238
- return {
239
- key: " value"
240
- }
238
+ return {
239
+ key: " value"
240
+ }
241
241
});
242
242
```
243
243
@@ -246,7 +246,7 @@ Will render
246
246
<testsuites name =" jest tests" >
247
247
<testsuite name =" addition" tests =" 1" errors =" 0" failures =" 0" skipped =" 0" timestamp =" 2017-07-13T09:42:28" time =" 0.161" >
248
248
<properties >
249
- <property name =" key" value =" value" />
249
+ <property name =" key" value =" value" />
250
250
</properties >
251
251
<testcase classname =" addition positive numbers should add up" name =" addition positive numbers should add up" time =" 0.004" >
252
252
</testcase >
You can’t perform that action at this time.
0 commit comments