@testomatio/reporter 1.4.0-beta-wdio-bdd → 1.4.0-beta-csv-enable

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.
@@ -10,7 +10,7 @@ const debug = require('debug')('@testomatio/reporter:util');
10
10
  *
11
11
  * @returns {String|null} testId
12
12
  */
13
- const parseTest = testTitle => {
13
+ const getTestomatIdFromTestTitle = testTitle => {
14
14
  if (!testTitle) return null;
15
15
 
16
16
  const captures = testTitle.match(/@T[\w\d]{8}/);
@@ -328,7 +328,7 @@ module.exports = {
328
328
  specificTestInfo,
329
329
  isValidUrl,
330
330
  ansiRegExp,
331
- parseTest,
331
+ getTestomatIdFromTestTitle,
332
332
  parseSuite,
333
333
  humanize,
334
334
  removeColorCodes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "1.4.0-beta-wdio-bdd",
3
+ "version": "1.4.0-beta-csv-enable",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "typings": "typings/index.d.ts",