@linzjs/step-ag-grid 7.16.1 → 7.16.2

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
@@ -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": "7.16.1",
5
+ "version": "7.16.2",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -150,10 +150,12 @@ export const clickMultiSelectOption = async (value: string): Promise<void> => {
150
150
  };
151
151
 
152
152
  const typeInput = async (value: string, filter: IQueryQuick): Promise<void> => {
153
- const openMenu = await findOpenMenu();
154
- const input = await findQuick(filter, openMenu);
155
- userEvent.clear(input);
156
- userEvent.type(input, value);
153
+ await act(async () => {
154
+ const openMenu = await findOpenMenu();
155
+ const input = await findQuick(filter, openMenu);
156
+ userEvent.clear(input);
157
+ userEvent.type(input, value);
158
+ });
157
159
  };
158
160
 
159
161
  export const typeOnlyInput = async (value: string): Promise<void> => {