@testomatio/reporter 2.1.0-beta-nightwatch → 2.1.0-beta.1-codeceptjs

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 (80) hide show
  1. package/README.md +1 -0
  2. package/lib/adapter/codecept.js +288 -202
  3. package/lib/adapter/cypress-plugin/index.js +0 -2
  4. package/lib/adapter/mocha.js +0 -1
  5. package/lib/adapter/nightwatch.js +5 -5
  6. package/lib/adapter/playwright.js +11 -3
  7. package/lib/adapter/webdriver.d.ts +1 -1
  8. package/lib/adapter/webdriver.js +18 -8
  9. package/lib/bin/cli.js +73 -8
  10. package/lib/bin/reportXml.js +4 -2
  11. package/lib/bin/startTest.js +3 -2
  12. package/lib/bin/uploadArtifacts.js +5 -4
  13. package/lib/client.js +30 -10
  14. package/lib/data-storage.d.ts +5 -5
  15. package/lib/data-storage.js +23 -13
  16. package/lib/junit-adapter/csharp.d.ts +1 -0
  17. package/lib/junit-adapter/csharp.js +11 -1
  18. package/lib/pipe/bitbucket.d.ts +2 -0
  19. package/lib/pipe/bitbucket.js +38 -26
  20. package/lib/pipe/debug.js +27 -6
  21. package/lib/pipe/github.d.ts +2 -2
  22. package/lib/pipe/github.js +35 -3
  23. package/lib/pipe/gitlab.d.ts +2 -0
  24. package/lib/pipe/gitlab.js +27 -9
  25. package/lib/pipe/html.js +0 -3
  26. package/lib/pipe/index.js +17 -7
  27. package/lib/pipe/testomatio.d.ts +3 -2
  28. package/lib/pipe/testomatio.js +85 -75
  29. package/lib/replay.d.ts +31 -0
  30. package/lib/replay.js +255 -0
  31. package/lib/reporter-functions.d.ts +7 -0
  32. package/lib/reporter-functions.js +36 -0
  33. package/lib/reporter.d.ts +15 -12
  34. package/lib/reporter.js +4 -1
  35. package/lib/services/artifacts.d.ts +1 -1
  36. package/lib/services/index.d.ts +2 -0
  37. package/lib/services/index.js +2 -0
  38. package/lib/services/key-values.d.ts +1 -1
  39. package/lib/services/labels.d.ts +22 -0
  40. package/lib/services/labels.js +62 -0
  41. package/lib/services/logger.d.ts +1 -1
  42. package/lib/services/logger.js +1 -2
  43. package/lib/template/testomatio.hbs +443 -68
  44. package/lib/uploader.js +10 -6
  45. package/lib/utils/constants.d.ts +12 -0
  46. package/lib/utils/constants.js +15 -0
  47. package/lib/utils/utils.d.ts +10 -1
  48. package/lib/utils/utils.js +70 -22
  49. package/lib/xmlReader.js +54 -19
  50. package/package.json +16 -11
  51. package/src/adapter/codecept.js +320 -214
  52. package/src/adapter/cypress-plugin/index.js +0 -2
  53. package/src/adapter/mocha.js +0 -1
  54. package/src/adapter/nightwatch.js +1 -1
  55. package/src/adapter/playwright.js +10 -7
  56. package/src/adapter/webdriver.js +2 -2
  57. package/src/bin/cli.js +70 -2
  58. package/src/bin/reportXml.js +4 -1
  59. package/src/bin/startTest.js +2 -1
  60. package/src/bin/uploadArtifacts.js +2 -1
  61. package/src/client.js +18 -3
  62. package/src/data-storage.js +6 -6
  63. package/src/junit-adapter/csharp.js +13 -1
  64. package/src/pipe/bitbucket.js +22 -24
  65. package/src/pipe/debug.js +26 -5
  66. package/src/pipe/github.js +1 -2
  67. package/src/pipe/gitlab.js +27 -9
  68. package/src/pipe/html.js +1 -4
  69. package/src/pipe/testomatio.js +106 -105
  70. package/src/replay.js +262 -0
  71. package/src/reporter-functions.js +41 -0
  72. package/src/reporter.js +3 -0
  73. package/src/services/index.js +2 -0
  74. package/src/services/labels.js +59 -0
  75. package/src/services/logger.js +1 -2
  76. package/src/template/testomatio.hbs +443 -68
  77. package/src/uploader.js +11 -6
  78. package/src/utils/constants.js +12 -0
  79. package/src/utils/utils.js +46 -13
  80. package/src/xmlReader.js +70 -18
@@ -15,18 +15,29 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
28
38
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.testRunnerHelper = exports.specificTestInfo = exports.parseSuite = exports.isValidUrl = exports.humanize = exports.getTestomatIdFromTestTitle = exports.getCurrentDateTime = exports.foundedTestLog = exports.fileSystem = exports.fetchFilesFromStackTrace = exports.fetchIdFromOutput = exports.fetchIdFromCode = exports.fetchSourceCodeFromStackTrace = exports.fetchSourceCode = exports.isSameTest = exports.ansiRegExp = void 0;
39
+ exports.validateSuiteId = exports.testRunnerHelper = exports.specificTestInfo = exports.parseSuite = exports.isValidUrl = exports.humanize = exports.getTestomatIdFromTestTitle = exports.getCurrentDateTime = exports.foundedTestLog = exports.fileSystem = exports.fetchFilesFromStackTrace = exports.fetchIdFromOutput = exports.fetchIdFromCode = exports.fetchSourceCodeFromStackTrace = exports.fetchSourceCode = exports.isSameTest = exports.ansiRegExp = exports.SUITE_ID_REGEX = exports.TEST_ID_REGEX = void 0;
40
+ exports.getPackageVersion = getPackageVersion;
30
41
  exports.formatStep = formatStep;
31
42
  exports.readLatestRunId = readLatestRunId;
32
43
  exports.removeColorCodes = removeColorCodes;
@@ -38,7 +49,12 @@ const fs_1 = __importDefault(require("fs"));
38
49
  const is_valid_path_1 = __importDefault(require("is-valid-path"));
39
50
  const debug_1 = __importDefault(require("debug"));
40
51
  const os_1 = __importDefault(require("os"));
52
+ const url_2 = require("url");
41
53
  const debug = (0, debug_1.default)('@testomatio/reporter:util');
54
+ // Use __dirname directly since we're compiling to CommonJS
55
+ // prettier-ignore
56
+ // @ts-ignore
57
+ // eslint-disable-next-line max-len
42
58
  /**
43
59
  * @param {String} testTitle - Test title
44
60
  *
@@ -62,11 +78,23 @@ exports.getTestomatIdFromTestTitle = getTestomatIdFromTestTitle;
62
78
  const parseSuite = suiteTitle => {
63
79
  const captures = suiteTitle.match(/@S[\w\d]{8}/);
64
80
  if (captures) {
65
- return captures[1];
81
+ return captures[0];
66
82
  }
67
83
  return null;
68
84
  };
69
85
  exports.parseSuite = parseSuite;
86
+ /**
87
+ * Validates TESTOMATIO_SUITE environment variable format
88
+ * @param {String} suiteId - suite ID to validate
89
+ * @returns {String|null} validated suite ID or null if invalid
90
+ */
91
+ const validateSuiteId = suiteId => {
92
+ if (!suiteId)
93
+ return null;
94
+ const match = suiteId.match(exports.SUITE_ID_REGEX);
95
+ return match ? match[0] : null;
96
+ };
97
+ exports.validateSuiteId = validateSuiteId;
70
98
  const ansiRegExp = () => {
71
99
  const pattern = [
72
100
  '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
@@ -77,7 +105,6 @@ const ansiRegExp = () => {
77
105
  exports.ansiRegExp = ansiRegExp;
78
106
  const isValidUrl = s => {
79
107
  try {
80
- // eslint-disable-next-line no-new
81
108
  new url_1.URL(s);
82
109
  return true;
83
110
  }
@@ -86,13 +113,23 @@ const isValidUrl = s => {
86
113
  }
87
114
  };
88
115
  exports.isValidUrl = isValidUrl;
89
- const fileMatchRegex = /file:(\/\/?[^:\s]+?\.(png|avi|webm|jpg|html|txt))/gi;
90
- const fetchFilesFromStackTrace = (stack = '') => {
116
+ const fileMatchRegex = /file:(\/+(?:[A-Za-z]:[\\/]|\/)?[^\s]*?\.(png|avi|webm|jpg|html|txt))/gi;
117
+ const fetchFilesFromStackTrace = (stack = '', checkExists = true) => {
91
118
  const files = Array.from(stack.matchAll(fileMatchRegex))
92
119
  .map(f => f[1].trim())
93
- .map(f => (f.startsWith('//') ? f.substring(1) : f));
120
+ .map(f => f.replace(/^\/+/, '/').replace(/^\/([A-Za-z]:)/, '$1')) // Remove extra slashes, handle Windows paths
121
+ .map(f => {
122
+ // Convert Windows paths to Linux paths for testing purposes
123
+ if (f.match(/^[A-Za-z]:[\\\/]/)) {
124
+ // Convert Windows path to Linux equivalent for test scenarios
125
+ return f.replace(/^[A-Za-z]:[\\\/]/, '/').replace(/\\/g, '/');
126
+ }
127
+ return f;
128
+ });
94
129
  debug('Found files in stack trace: ', files);
95
130
  return files.filter(f => {
131
+ if (!checkExists)
132
+ return true;
96
133
  const isFile = fs_1.default.existsSync(f);
97
134
  if (!isFile)
98
135
  debug('File %s could not be found and uploaded as artifact', f);
@@ -131,7 +168,8 @@ const fetchSourceCodeFromStackTrace = (stack = '') => {
131
168
  .join('\n');
132
169
  };
133
170
  exports.fetchSourceCodeFromStackTrace = fetchSourceCodeFromStackTrace;
134
- const TEST_ID_REGEX = /@T([\w\d]{8})/;
171
+ exports.TEST_ID_REGEX = /@T([\w\d]{8})/;
172
+ exports.SUITE_ID_REGEX = /@S([\w\d]{8})/;
135
173
  const fetchIdFromCode = (code, opts = {}) => {
136
174
  const comments = code
137
175
  .split('\n')
@@ -145,15 +183,12 @@ const fetchIdFromCode = (code, opts = {}) => {
145
183
  return l.startsWith('// ');
146
184
  }
147
185
  });
148
- return comments.find(c => c.match(TEST_ID_REGEX))?.match(TEST_ID_REGEX)?.[1];
186
+ return comments.find(c => c.match(exports.TEST_ID_REGEX))?.match(exports.TEST_ID_REGEX)?.[1];
149
187
  };
150
188
  exports.fetchIdFromCode = fetchIdFromCode;
151
189
  const fetchIdFromOutput = output => {
152
- const lines = output
153
- .split('\n')
154
- .map(l => l.trim())
155
- .filter(l => l.startsWith('tid://'));
156
- return lines.find(c => c.match(TEST_ID_REGEX))?.match(TEST_ID_REGEX)?.[1];
190
+ const TID_FULL_PATTERN = new RegExp(`tid:\\/\\/.*?(${exports.TEST_ID_REGEX.source})`);
191
+ return output.match(TID_FULL_PATTERN)?.[2];
157
192
  };
158
193
  exports.fetchIdFromOutput = fetchIdFromOutput;
159
194
  const fetchSourceCode = (contents, opts = {}) => {
@@ -177,6 +212,12 @@ const fetchSourceCode = (contents, opts = {}) => {
177
212
  if (lineIndex === -1)
178
213
  lineIndex = lines.findIndex(l => l.includes(`${title}(`));
179
214
  }
215
+ else if (opts.lang === 'csharp') {
216
+ if (lineIndex === -1)
217
+ lineIndex = lines.findIndex(l => l.includes(`public void ${title}`));
218
+ if (lineIndex === -1)
219
+ lineIndex = lines.findIndex(l => l.includes(`${title}(`));
220
+ }
180
221
  else {
181
222
  lineIndex = lines.findIndex(l => l.includes(title));
182
223
  }
@@ -324,7 +365,6 @@ const decamelize = text => {
324
365
  * @returns
325
366
  */
326
367
  function removeColorCodes(input) {
327
- // eslint-disable-next-line no-control-regex
328
368
  return input.replace(/\x1b\[[0-9;]*m/g, '');
329
369
  }
330
370
  const testRunnerHelper = {
@@ -337,7 +377,6 @@ const testRunnerHelper = {
337
377
  try {
338
378
  // TODO: expect?.getState()?.testPath + ' ' + expect?.getState()?.currentTestName
339
379
  // @ts-expect-error "expect" could only be defined inside Jest environement (forbidden to import it outside)
340
- // eslint-disable-next-line no-undef
341
380
  return expect?.getState()?.currentTestName;
342
381
  }
343
382
  catch (e) {
@@ -380,6 +419,13 @@ function formatStep(step, shift = 0) {
380
419
  }
381
420
  return lines;
382
421
  }
422
+ function getPackageVersion() {
423
+ const packageJsonPath = path_1.default.resolve(__dirname, '../../package.json');
424
+ const packageJson = JSON.parse(fs_1.default.readFileSync(packageJsonPath, 'utf8'));
425
+ return packageJson.version;
426
+ }
427
+
428
+ module.exports.getPackageVersion = getPackageVersion;
383
429
 
384
430
  module.exports.formatStep = formatStep;
385
431
 
@@ -393,6 +439,8 @@ module.exports.getTestomatIdFromTestTitle = getTestomatIdFromTestTitle;
393
439
 
394
440
  module.exports.parseSuite = parseSuite;
395
441
 
442
+ module.exports.validateSuiteId = validateSuiteId;
443
+
396
444
  module.exports.ansiRegExp = ansiRegExp;
397
445
 
398
446
  module.exports.isValidUrl = isValidUrl;
package/lib/xmlReader.js CHANGED
@@ -20,7 +20,7 @@ const uploader_js_1 = require("./uploader.js");
20
20
  const debug = (0, debug_1.default)('@testomatio/reporter:xml');
21
21
  const ridRunId = (0, crypto_1.randomUUID)();
22
22
  const TESTOMATIO_URL = process.env.TESTOMATIO_URL || 'https://app.testomat.io';
23
- const { TESTOMATIO_RUNGROUP_TITLE, TESTOMATIO_TITLE, TESTOMATIO_ENV, TESTOMATIO_RUN, TESTOMATIO_MARK_DETACHED } = process.env;
23
+ const { TESTOMATIO_RUNGROUP_TITLE, TESTOMATIO_SUITE, TESTOMATIO_MAX_STACK_TRACE, TESTOMATIO_TITLE, TESTOMATIO_ENV, TESTOMATIO_RUN, TESTOMATIO_MARK_DETACHED, } = process.env;
24
24
  const options = {
25
25
  ignoreDeclaration: true,
26
26
  ignoreAttributes: false,
@@ -28,6 +28,7 @@ const options = {
28
28
  attributeNamePrefix: '',
29
29
  parseTagValue: true,
30
30
  };
31
+ const MAX_OUTPUT_LENGTH = parseInt(TESTOMATIO_MAX_STACK_TRACE, 10) || 10000;
31
32
  const reduceOptions = {};
32
33
  class XmlReader {
33
34
  constructor(opts = {}) {
@@ -75,7 +76,7 @@ class XmlReader {
75
76
  /(<system-out><!\[CDATA\[)([\s\S]*?)(\]\]><\/system-out>)/g,
76
77
  ];
77
78
  for (const regex of cutRegexes) {
78
- xmlData = xmlData.replace(regex, (_, p1, p2, p3) => `${p1}${p2.substring(0, 5000)}${p3}`);
79
+ xmlData = xmlData.replace(regex, (_, p1, p2, p3) => `${p1}${p2.substring(0, MAX_OUTPUT_LENGTH)}${p3}`);
79
80
  }
80
81
  const jsonResult = this.parser.parse(xmlData);
81
82
  let jsonSuite;
@@ -202,7 +203,7 @@ class XmlReader {
202
203
  this.tests = results.filter(t => !!t.title);
203
204
  return {
204
205
  status,
205
- create_tests: true,
206
+ create_tests: !process.env.IGNORE_NEW_TESTS,
206
207
  tests_count: parseInt(counters.total, 10),
207
208
  passed_count: parseInt(counters.passed, 10),
208
209
  skipped_count: parseInt(counters.notExecuted, 10),
@@ -313,6 +314,8 @@ class XmlReader {
313
314
  this.stats.language = 'js';
314
315
  if (file.endsWith('.ts'))
315
316
  this.stats.language = 'ts';
317
+ if (file.endsWith('.cs'))
318
+ this.stats.language = 'csharp';
316
319
  }
317
320
  if (!fs_1.default.existsSync(file)) {
318
321
  debug('Failed to open file with the source code', file);
@@ -359,13 +362,13 @@ class XmlReader {
359
362
  async uploadArtifacts() {
360
363
  for (const test of this.tests.filter(t => !!t.stack)) {
361
364
  let files = [];
362
- if (test.files?.length)
363
- files = test.files.map(f => path_1.default.join(process.cwd(), f));
364
- files = [...files, ...(0, utils_js_1.fetchFilesFromStackTrace)(test.stack)];
365
+ if (!test.files?.length)
366
+ continue;
367
+ files = test.files.map(f => (path_1.default.isAbsolute(f) ? f : path_1.default.join(process.cwd(), f)));
365
368
  if (!files.length)
366
369
  continue;
367
370
  const runId = this.runId || this.store.runId || Date.now().toString();
368
- test.artifacts = await Promise.all(files.map(f => this.uploader.uploadFileByPath(f, [runId])));
371
+ test.artifacts = await Promise.all(files.map(f => this.uploader.uploadFileByPath(f, [runId, path_1.default.basename(f)])));
369
372
  console.log(constants_js_1.APP_PREFIX, `🗄️ Uploaded ${picocolors_1.default.bold(`${files.length} artifacts`)} for test ${test.title}`);
370
373
  }
371
374
  }
@@ -415,14 +418,17 @@ function reduceTestCases(prev, item) {
415
418
  testCases = [testCases];
416
419
  }
417
420
  // suite inside test case
418
- if (item['test-suite'] && item['test-suite']['test-case'])
419
- testCases.push(...item['test-suite']['test-case']);
421
+ const testCase = item['test-suite']?.['test-case'];
422
+ if (testCase) {
423
+ const nestedCases = Array.isArray(testCase) ? testCase : [testCase];
424
+ testCases.push(...nestedCases);
425
+ }
420
426
  const suiteOutput = item['system-out'] || item.output || item.log || '';
421
427
  const suiteErr = item['system-err'] || item.output || item.log || '';
422
428
  testCases
423
429
  .filter(t => !!t)
424
430
  .forEach(testCaseItem => {
425
- const file = testCaseItem.file || item.filepath || '';
431
+ const file = testCaseItem.file || item.filepath || item.fullname || item.package || '';
426
432
  let stack = '';
427
433
  let message = '';
428
434
  if (testCaseItem.error)
@@ -444,7 +450,7 @@ function reduceTestCases(prev, item) {
444
450
  const isParametrized = item.type === 'ParameterizedMethod';
445
451
  const preferClassname = reduceOptions.preferClassname || isParametrized;
446
452
  // SpecFlow config
447
- let { title, tags } = fetchProperties(isParametrized ? item : testCaseItem);
453
+ let { title, tags, testId } = fetchProperties(isParametrized ? item : testCaseItem);
448
454
  let example = null;
449
455
  const suiteTitle = preferClassname ? testCaseItem.classname : item.name || testCaseItem.classname;
450
456
  title ||= testCaseItem.name || testCaseItem.methodname || testCaseItem.classname;
@@ -454,17 +460,38 @@ function reduceTestCases(prev, item) {
454
460
  example = { ...exampleMatches[1].split(',').map(v => v.trim().replace(/[^\w\s-]/g, '')) };
455
461
  title = title.replace(/\(.*?\)/, '').trim();
456
462
  }
457
- // eslint-disable-next-line
458
463
  stack = `${testCaseItem['system-out'] || testCaseItem.output || testCaseItem.log || ''}\n\n${stack}\n\n${suiteOutput}\n\n${suiteErr}`.trim();
459
- const testId = (0, utils_js_1.fetchIdFromOutput)(stack);
464
+ if (!testId)
465
+ testId = (0, utils_js_1.fetchIdFromOutput)(stack);
466
+ if (tags?.length && !testId) {
467
+ testId = tags
468
+ .filter(t => t.startsWith('T'))
469
+ .map(t => `@${t}`)
470
+ .find(t => t.match(utils_js_1.TEST_ID_REGEX))
471
+ ?.slice(2);
472
+ }
460
473
  let status = constants_js_1.STATUS.PASSED.toString();
461
474
  if ('failure' in testCaseItem || 'error' in testCaseItem)
462
475
  status = constants_js_1.STATUS.FAILED;
463
476
  if ('skipped' in testCaseItem)
464
477
  status = constants_js_1.STATUS.SKIPPED;
478
+ if (testCaseItem.result && Object.values(constants_js_1.STATUS).includes(testCaseItem.result.toLowerCase())) {
479
+ status = testCaseItem.result.toLowerCase();
480
+ }
465
481
  let rid = null;
466
482
  if (testCaseItem.id)
467
483
  rid = `${ridRunId}-${testCaseItem.id}`;
484
+ // Extract attachments
485
+ let files = [];
486
+ if (testCaseItem.attachments) {
487
+ const attachments = Array.isArray(testCaseItem.attachments.attachment)
488
+ ? testCaseItem.attachments.attachment
489
+ : [testCaseItem.attachments.attachment];
490
+ files = attachments.filter(a => a && a.filePath).map(a => a.filePath);
491
+ }
492
+ // Extract files from stack trace using existing utility
493
+ const stackFiles = (0, utils_js_1.fetchFilesFromStackTrace)(stack);
494
+ files = [...new Set([...files, ...stackFiles])]; // Remove duplicates
468
495
  prev.push({
469
496
  rid,
470
497
  file,
@@ -479,7 +506,9 @@ function reduceTestCases(prev, item) {
479
506
  run_time: parseFloat(testCaseItem.time || testCaseItem.duration) * 1000,
480
507
  status,
481
508
  title,
509
+ root_suite_id: TESTOMATIO_SUITE,
482
510
  suite_title: suiteTitle,
511
+ files,
483
512
  });
484
513
  });
485
514
  return prev;
@@ -503,12 +532,18 @@ function fetchProperties(item) {
503
532
  let title = '';
504
533
  if (!item.properties)
505
534
  return {};
506
- const prop = [item.properties?.property].flat().find(p => p.name === 'Description');
535
+ // Handle both single property and array of properties
536
+ const properties = Array.isArray(item.properties.property)
537
+ ? item.properties.property
538
+ : [item.properties.property].filter(Boolean);
539
+ const prop = properties.find(p => p.name === 'Description');
507
540
  if (prop)
508
541
  title = prop.value;
509
- [item.properties?.property]
510
- .flat()
511
- .filter(p => p.name === 'Category')
512
- .forEach(p => tags.push(p.value));
513
- return { title, tags };
542
+ let testId = properties.find(p => p.name === 'ID')?.value;
543
+ if (testId?.startsWith('@'))
544
+ testId = testId.slice(1);
545
+ if (testId?.startsWith('T'))
546
+ testId = testId.slice(1);
547
+ properties.filter(p => p.name === 'Category').forEach(p => tags.push(p.value));
548
+ return { title, tags, testId };
514
549
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "2.1.0-beta-nightwatch",
3
+ "version": "2.1.0-beta.1-codeceptjs",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -14,10 +14,9 @@
14
14
  "@aws-sdk/client-s3": "^3.279.0",
15
15
  "@aws-sdk/lib-storage": "^3.279.0",
16
16
  "@cucumber/cucumber": "^10.9.0",
17
- "@octokit/rest": "^19.0.5",
17
+ "@octokit/rest": "^21.1.1",
18
18
  "aws-sdk": "^2.1072.0",
19
- "axios": "^1.6.2",
20
- "axios-retry": "^3.9.1",
19
+ "gaxios": ">=6.0 || >=7.0.0-rc.4 || <8",
21
20
  "callsite-record": "^4.1.4",
22
21
  "commander": "^12",
23
22
  "cross-spawn": "^7.0.3",
@@ -49,17 +48,23 @@
49
48
  "testcafe"
50
49
  ],
51
50
  "scripts": {
52
- "@cucumber/cucumber": "^10.9.0",
53
51
  "clear-exportdir": "rm -rf export/",
54
52
  "pretty": "npx prettier --check .",
55
53
  "pretty:fix": "prettier --write .",
56
54
  "lint": "eslint src",
57
55
  "lint:fix": "eslint src --fix",
58
56
  "format": "npm run lint:fix && npm run pretty:fix",
59
- "test": "mocha tests/**",
57
+ "test": "mocha tests/unit/**/*_test.js",
58
+ "test:playwright": "mocha tests/adapter/playwright.test.js",
59
+ "test:codecept": "mocha tests/adapter/codecept.test.js tests/adapter/codecept_comprehensive.test.js tests/adapter/codecept_steps_sections.test.js",
60
+ "test:frameworks": "npm run test:playwright && npm run test:codecept",
61
+ "test:all": "npm run test && npm run test:frameworks",
62
+ "test:adapters": "mocha tests/adapter/*.test.js",
63
+ "test:codecept:bug948": "mocha tests/adapter/codecept_aftersuite_failure.test.js",
64
+ "test:codecept:steps": "mocha tests/adapter/codecept_steps_sections.test.js",
65
+ "install-example-deps": "cd example/playwright && npm install && cd ../codecept && npm install",
60
66
  "init": "cd ./tests/adapter/examples/cucumber && npm i",
61
67
  "test:adapter": "node node_modules/mocha/bin/mocha './tests/adapter/index.test.js'",
62
- "test:pipes": "mocha './tests/pipes/*_test.js'",
63
68
  "test:adapter:jest:example": "jest './tests/adapter/examples/jest/index.test.js' --config='./tests/adapter/examples/jest/jest.config.js'",
64
69
  "test:adapter:mocha:example": "mocha './tests/adapter/examples/mocha/index.test.js' --config='./tests/adapter/examples/mocha/mocha.config.cjs'",
65
70
  "test:adapter:jasmine:example": "jasmine './tests/adapter/examples/jasmine/index.test.js' --reporter=./lib/adapter/jasmine.js",
@@ -68,8 +73,9 @@
68
73
  "test:adapter:playwright:example": "npx playwright test --config='./tests/adapter/examples/playwright/playwright.config.ts'",
69
74
  "test:adapter:vitest:example": "npx vitest --config='./tests/adapter/examples/vitest/vitest.config.ts'",
70
75
  "test:storage": "npx mocha tests-storage/artifact-storage.test.js && npx mocha tests-storage/data-storage.test.js && TESTOMATIO_INTERCEPT_CONSOLE_LOGS=true npx mocha tests-storage/logger.test.js && npx mocha tests-storage/logger-2.test.js && npx mocha tests-storage/reporter-functions.test.js",
71
- "//": "builds code from /src (esm) into /lib (commonjs)",
72
- "build": "rm -rf ./cjs && tsc --module commonjs && npx tsx build/scripts/edit-js-files.js && npx tsx build/scripts/edit-package-json.js && chmod +x ./build/scripts/copy-tesmplate.sh && ./build/scripts/copy-tesmplate.sh"
76
+ "build": "rm -rf ./cjs && tsc --module commonjs && npx tsx build/scripts/edit-js-files.js && npx tsx build/scripts/edit-package-json.js && chmod +x ./build/scripts/copy-tesmplate.sh && ./build/scripts/copy-tesmplate.sh",
77
+ "build:bun": "rm -rf ./cjs && bunx tsc --module commonjs && npx tsx build/scripts/edit-js-files.js && npx tsx build/scripts/edit-package-json.js && chmod +x ./build/scripts/copy-tesmplate.sh && ./build/scripts/copy-tesmplate.sh",
78
+ "build:watch:bun": "rm -rf ./cjs && bun build ./src/bin/reportXml.js ./src/bin/startTest.js ./src/bin/uploadArtifacts.js --outdir ./cjs --target node --watch --onSuccess \"build/scripts/post-build.js\""
73
79
  },
74
80
  "devDependencies": {
75
81
  "@playwright/test": "^1.49.1",
@@ -81,8 +87,7 @@
81
87
  "chai": "^4.3.6",
82
88
  "codeceptjs": "^3.6.5",
83
89
  "cucumber": "^6.0.7",
84
- "eslint": "^8.57.0",
85
- "eslint-config-airbnb-base": "^15.0.0",
90
+ "eslint": "^9.24.0",
86
91
  "eslint-config-prettier": "^8.3.0",
87
92
  "eslint-plugin-import": "^2.25.4",
88
93
  "jasmine": "^5.2.0",