@testomatio/reporter 1.4.2-beta-specflow-compat.1 → 1.4.2-beta-specflow-compat.2

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.
Files changed (2) hide show
  1. package/lib/xmlReader.js +1 -1
  2. package/package.json +1 -1
package/lib/xmlReader.js CHANGED
@@ -449,7 +449,7 @@ function reduceTestCases(prev, item) {
449
449
  tags ||= [];
450
450
 
451
451
  let example = testCaseItem.name.match(/\((.*?)\)/);
452
- if (example) example = [ ...example[1].split(',') ];
452
+ if (example) example = { ...example[1].split(',') };
453
453
 
454
454
  // eslint-disable-next-line
455
455
  stack = `${
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "1.4.2-beta-specflow-compat.1",
3
+ "version": "1.4.2-beta-specflow-compat.2",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "typings": "typings/index.d.ts",