@linzjs/step-ag-grid 28.2.2 → 28.2.4

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.
@@ -130,7 +130,7 @@ export const findCellContains = async (
130
130
  const row = await findRow(rowId, within);
131
131
  return getQuick({ tagName: `[col-id='${colId}']`, text }, row);
132
132
  },
133
- { timeout: 2200 },
133
+ { timeout: 5000 },
134
134
  );
135
135
  };
136
136
 
@@ -140,7 +140,7 @@ export const selectCell = async (rowId: string | number, colId: string, within?:
140
140
  const cell = await findCell(rowId, colId, within);
141
141
  await user.click(cell);
142
142
  },
143
- { timeout: 2200 },
143
+ { timeout: 5000 },
144
144
  );
145
145
  };
146
146
 
@@ -149,9 +149,9 @@ export const editCell = async (rowId: number | string, colId: string, within?: H
149
149
  async () => {
150
150
  const cell = await findCell(rowId, colId, within);
151
151
  await user.dblClick(cell);
152
- await waitFor(findOpenPopover);
152
+ await waitFor(findOpenPopover, { timeout: 4000 });
153
153
  },
154
- { timeout: 2200 },
154
+ { timeout: 5000 },
155
155
  );
156
156
  };
157
157
 
@@ -131,7 +131,7 @@ export const findCellContains = async (
131
131
  const row = await findRow(rowId, within);
132
132
  return getQuick({ tagName: `[col-id='${colId}']`, text }, row);
133
133
  },
134
- { timeout: 2200 },
134
+ { timeout: 5000 },
135
135
  );
136
136
  };
137
137
 
@@ -141,7 +141,7 @@ export const selectCell = async (rowId: string | number, colId: string, within?:
141
141
  const cell = await findCell(rowId, colId, within);
142
142
  await user.click(cell);
143
143
  },
144
- { timeout: 2200 },
144
+ { timeout: 5000 },
145
145
  );
146
146
  };
147
147
 
@@ -150,9 +150,9 @@ export const editCell = async (rowId: number | string, colId: string, within?: H
150
150
  async () => {
151
151
  const cell = await findCell(rowId, colId, within);
152
152
  await user.dblClick(cell);
153
- await waitFor(findOpenPopover);
153
+ await waitFor(findOpenPopover, { timeout: 1000 });
154
154
  },
155
- { timeout: 2200 },
155
+ { timeout: 5000 },
156
156
  );
157
157
  };
158
158
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "28.2.2",
5
+ "version": "28.2.4",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -130,7 +130,7 @@ export const findCellContains = async (
130
130
  const row = await findRow(rowId, within);
131
131
  return getQuick({ tagName: `[col-id='${colId}']`, text }, row);
132
132
  },
133
- { timeout: 2200 },
133
+ { timeout: 5000 },
134
134
  );
135
135
  };
136
136
 
@@ -140,7 +140,7 @@ export const selectCell = async (rowId: string | number, colId: string, within?:
140
140
  const cell = await findCell(rowId, colId, within);
141
141
  await user.click(cell);
142
142
  },
143
- { timeout: 2200 },
143
+ { timeout: 5000 },
144
144
  );
145
145
  };
146
146
 
@@ -149,9 +149,9 @@ export const editCell = async (rowId: number | string, colId: string, within?: H
149
149
  async () => {
150
150
  const cell = await findCell(rowId, colId, within);
151
151
  await user.dblClick(cell);
152
- await waitFor(findOpenPopover);
152
+ await waitFor(findOpenPopover, { timeout: 4000 });
153
153
  },
154
- { timeout: 2200 },
154
+ { timeout: 5000 },
155
155
  );
156
156
  };
157
157
 
@@ -131,7 +131,7 @@ export const findCellContains = async (
131
131
  const row = await findRow(rowId, within);
132
132
  return getQuick({ tagName: `[col-id='${colId}']`, text }, row);
133
133
  },
134
- { timeout: 2200 },
134
+ { timeout: 5000 },
135
135
  );
136
136
  };
137
137
 
@@ -141,7 +141,7 @@ export const selectCell = async (rowId: string | number, colId: string, within?:
141
141
  const cell = await findCell(rowId, colId, within);
142
142
  await user.click(cell);
143
143
  },
144
- { timeout: 2200 },
144
+ { timeout: 5000 },
145
145
  );
146
146
  };
147
147
 
@@ -150,9 +150,9 @@ export const editCell = async (rowId: number | string, colId: string, within?: H
150
150
  async () => {
151
151
  const cell = await findCell(rowId, colId, within);
152
152
  await user.dblClick(cell);
153
- await waitFor(findOpenPopover);
153
+ await waitFor(findOpenPopover, { timeout: 1000 });
154
154
  },
155
- { timeout: 2200 },
155
+ { timeout: 5000 },
156
156
  );
157
157
  };
158
158