2022-11-18 16:08:50 -05:00
|
|
|
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
|
|
|
// allows you to do things like:
|
|
|
|
// expect(element).toHaveTextContent(/react/i)
|
|
|
|
// learn more: https://github.com/testing-library/jest-dom
|
2023-07-21 17:57:13 -04:00
|
|
|
import "@testing-library/jest-dom";
|
2023-07-21 22:37:28 -04:00
|
|
|
|
|
|
|
window.scrollTo = (x, y) => {
|
|
|
|
document.documentElement.scrollTop = y;
|
|
|
|
};
|