mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
19 lines
576 B
TypeScript
19 lines
576 B
TypeScript
import { waitFor } from "@testing-library/dom";
|
|
import { fireEvent } from "@testing-library/react";
|
|
|
|
export const getTextEditor = async (selector: string, waitForEditor = true) => {
|
|
const query = () => document.querySelector(selector) as HTMLTextAreaElement;
|
|
if (waitForEditor) {
|
|
await waitFor(() => expect(query()).not.toBe(null));
|
|
return query();
|
|
}
|
|
return query();
|
|
};
|
|
|
|
export const updateTextEditor = (
|
|
editor: HTMLTextAreaElement | HTMLInputElement,
|
|
value: string,
|
|
) => {
|
|
fireEvent.change(editor, { target: { value } });
|
|
fireEvent.input(editor);
|
|
};
|