@linzjs/step-ag-grid 2.4.8 → 2.4.9

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.
@@ -2073,7 +2073,8 @@ var GridContextProvider = function (props) {
2073
2073
  */
2074
2074
  var sizeColumnsToFit = function () {
2075
2075
  gridApiOp(function (gridApi) {
2076
- gridApi.sizeColumnsToFit();
2076
+ // Hide size columns to fit errors in tests
2077
+ document.body.clientWidth && gridApi.sizeColumnsToFit();
2077
2078
  });
2078
2079
  };
2079
2080
  var stopEditing = function () { return gridApiOp(function (gridApi) { return gridApi.stopEditing(); }); };