datagrok-tools 4.14.58 → 4.14.59

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.
@@ -79,10 +79,10 @@ async function testAll(args) {
79
79
  (0, _testUtils.printBrowsersResult)(result, args.verbose);
80
80
  }
81
81
  if (args.csv) {
82
- console.log('Saving');
82
+ console.log(`Saving ${testsResults.length} results`);
83
83
  (0, _testUtils.saveCsvResults)(testsResults.map(result => result.csv), csvReportDir);
84
84
  }
85
- return !testsResults.map(test => test.failed).some(failStatus => failStatus === true);
85
+ return testsResults.every(test => !test.failed);
86
86
  }
87
87
  async function filterTests(tests, tags, stressTest = false, benchmark = false) {
88
88
  let filteredTests = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.14.58",
3
+ "version": "4.14.59",
4
4
  "description": "Utility to upload and publish packages to Datagrok",
5
5
  "homepage": "https://github.com/datagrok-ai/public/tree/master/tools#readme",
6
6
  "dependencies": {