You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
success/src/setupTests.ts

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);