@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
package/src/utils/testUtil.ts
CHANGED
|
@@ -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
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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> => {
|