@testomatio/reporter 2.8.1 → 2.8.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.
package/lib/bin/cli.js CHANGED
@@ -105,9 +105,9 @@ program
105
105
  if (opts.filterList) {
106
106
  if (command)
107
107
  log_js_1.log.info(picocolors_1.default.green(`Full Running Command: ${filteredCommand}`));
108
- log_js_1.log.info();
109
- log_js_1.log.info(`Grep string:`);
110
- log_js_1.log.info(`${tests.join(', ')}`);
108
+ console.log();
109
+ console.log(`Grep string:`);
110
+ console.log(`${tests.join(', ')}`);
111
111
  return;
112
112
  }
113
113
  if (command && command.split) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "engines": {
6
6
  "node": ">=18"
package/src/bin/cli.js CHANGED
@@ -117,9 +117,9 @@ program
117
117
 
118
118
  if(opts.filterList) {
119
119
  if (command) log.info(pc.green(`Full Running Command: ${filteredCommand}`));
120
- log.info();
121
- log.info(`Grep string:`);
122
- log.info(`${tests.join(', ')}`);
120
+ console.log();
121
+ console.log(`Grep string:`);
122
+ console.log(`${tests.join(', ')}`);
123
123
  return;
124
124
  }
125
125