9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
|
import "@testing-library/jest-dom";
|
||
|
import "jest-canvas-mock";
|
||
|
|
||
|
// 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);
|