@testomatio/reporter 2.9.2 → 2.9.3-beta-vitestmeta

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.
@@ -393,7 +393,10 @@ function normalizeVitestTest(test) {
393
393
  file,
394
394
  suiteTitle,
395
395
  logs: '',
396
- meta: typeof test.meta === 'function' ? test.meta() : {},
396
+ meta: {
397
+ ...(test.task?.meta || {}),
398
+ ...(typeof test.meta === 'function' ? test.meta() : test.meta || {}),
399
+ },
397
400
  };
398
401
  }
399
402
  return {
@@ -3,10 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ const module_1 = require("module");
6
7
  const playwright_js_1 = require("./adapter/utils/playwright.js");
7
8
  const helpers_js_1 = require("./helpers.js");
8
9
  const index_js_1 = require("./services/index.js");
9
10
  const picocolors_1 = __importDefault(require("picocolors"));
11
+ const requireModule = (0, module_1.createRequire)(`${process.cwd()}/package.json`);
10
12
  /**
11
13
  * Stores path to file as artifact and uploads it to the S3 storage
12
14
  * @param {string | {path: string, type: string, name: string}} data - path to file or object with path, type and name
@@ -68,6 +70,16 @@ function setKeyValue(keyValue, value = undefined) {
68
70
  console.log(`${playwright_js_1.playwrightLogsMarkers.meta} ${JSON.stringify(keyValue)}`);
69
71
  return;
70
72
  }
73
+ if (process.env.VITEST || process.env.VITEST_WORKER_ID) {
74
+ try {
75
+ const vitestTest = requireModule('@vitest/runner').getCurrentTest?.();
76
+ if (vitestTest) {
77
+ Object.assign((vitestTest.meta ||= {}), keyValue);
78
+ return;
79
+ }
80
+ }
81
+ catch { }
82
+ }
71
83
  // in this case keyValue is expected to be an object
72
84
  index_js_1.services.keyValues.put(keyValue);
73
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "2.9.2",
3
+ "version": "2.9.3-beta-vitestmeta",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -396,7 +396,10 @@ function normalizeVitestTest(test) {
396
396
  file,
397
397
  suiteTitle,
398
398
  logs: '',
399
- meta: typeof test.meta === 'function' ? test.meta() : {},
399
+ meta: {
400
+ ...(test.task?.meta || {}),
401
+ ...(typeof test.meta === 'function' ? test.meta() : test.meta || {}),
402
+ },
400
403
  };
401
404
  }
402
405
 
@@ -1,8 +1,11 @@
1
+ import { createRequire } from 'module';
1
2
  import { playwrightLogsMarkers } from './adapter/utils/playwright.js';
2
3
  import { isPlaywright } from './helpers.js';
3
4
  import { services } from './services/index.js';
4
5
  import pc from 'picocolors';
5
6
 
7
+ const requireModule = createRequire(`${process.cwd()}/package.json`);
8
+
6
9
  /**
7
10
  * Stores path to file as artifact and uploads it to the S3 storage
8
11
  * @param {string | {path: string, type: string, name: string}} data - path to file or object with path, type and name
@@ -67,6 +70,16 @@ function setKeyValue(keyValue, value = undefined) {
67
70
  return;
68
71
  }
69
72
 
73
+ if (process.env.VITEST || process.env.VITEST_WORKER_ID) {
74
+ try {
75
+ const vitestTest = requireModule('@vitest/runner').getCurrentTest?.();
76
+ if (vitestTest) {
77
+ Object.assign((vitestTest.meta ||= {}), keyValue);
78
+ return;
79
+ }
80
+ } catch {}
81
+ }
82
+
70
83
  // in this case keyValue is expected to be an object
71
84
  services.keyValues.put(keyValue);
72
85
  }