datagrok-tools 4.14.35 → 4.14.36
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/bin/utils/test-utils.js +1 -1
- package/package.json +1 -1
package/bin/utils/test-utils.js
CHANGED
|
@@ -363,7 +363,7 @@ async function runTests(testsParams, stopOnFail) {
|
|
|
363
363
|
row['flaking'] = success && window.DG.Test.isReproducing;
|
|
364
364
|
df.changeColumnType('result', window.DG.COLUMN_TYPE.STRING);
|
|
365
365
|
df.changeColumnType('logs', window.DG.COLUMN_TYPE.STRING);
|
|
366
|
-
df.changeColumnType('widgetsDifference', window.DG.COLUMN_TYPE.STRING);
|
|
366
|
+
if (df.col('widgetsDifference')) df.changeColumnType('widgetsDifference', window.DG.COLUMN_TYPE.STRING);
|
|
367
367
|
// df.changeColumnType('memoryDelta', (<any>window).DG.COLUMN_TYPE.BIG_INT);
|
|
368
368
|
|
|
369
369
|
if (resultDF === undefined) resultDF = df;else resultDF = resultDF.append(df);
|
package/package.json
CHANGED