dceky 1.1.10 → 1.1.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dceky",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Cypress toolkit for Harvard DCE",
5
5
  "main": "./lib/src/index.js",
6
6
  "types": "./lib/src/index.d.ts",
@@ -82,7 +82,7 @@ const executeAllHeadlessCombinations = async (
82
82
  const failedCombos = results.filter((r) => { return !r.success; });
83
83
  if (failedCombos.length > 0) {
84
84
  clear();
85
- print.title('⚠️ Some combos failed to run');
85
+ print.title('⚠️ Some combos failed to run!');
86
86
  console.log('');
87
87
  console.log('The following combos failed to run:');
88
88
  failedCombos.forEach((combo) => {
@@ -96,11 +96,11 @@ const executeAllHeadlessCombinations = async (
96
96
  clear();
97
97
  print.title('Testing Finished');
98
98
  console.log('');
99
- console.log('Open the report (cmd + double click) the link below:');
99
+ console.log('📊 View report (cmd + double click below):');
100
100
  console.log(`file://${path.join(outputDir, 'index.html')}`);
101
101
  console.log('');
102
- console.log('Save and share the report by zipping and sharing this folder:');
103
- console.log(outputDir);
102
+ console.log('📁 Zip and save report folder (cmd + double click below):');
103
+ console.log(`file://${outputDir}`);
104
104
  process.exit(0);
105
105
  };
106
106