mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
import "@testing-library/jest-dom";
|
|
import "jest-canvas-mock";
|
|
|
|
jest.mock("nanoid", () => {
|
|
return {
|
|
nanoid: jest.fn(() => "test-id"),
|
|
};
|
|
});
|
|
// ReactDOM is located inside index.tsx file
|
|
// as a result, we need a place for it to render into
|
|
const element = document.createElement("div");
|
|
element.id = "root";
|
|
document.body.appendChild(element);
|