@baseplate-dev/ui-components
Version:
Shared UI component library
27 lines • 763 B
JavaScript
import { cleanup } from '@testing-library/react';
import { afterEach, beforeAll } from 'vitest';
import '@testing-library/jest-dom/vitest';
// Workaround for lack of scrollIntoView in jsdom but required in cmdk
// https://github.com/jsdom/jsdom/issues/1695
Element.prototype.scrollIntoView = () => {
/* no op */
};
// Workaround for lack of ResizeObserver in jsdom but required in cmdk
// https://github.com/jsdom/jsdom/issues/3368
beforeAll(() => {
globalThis.ResizeObserver = class ResizeObserver {
observe() {
// do nothing
}
unobserve() {
// do nothing
}
disconnect() {
// do nothing
}
};
});
afterEach(() => {
cleanup();
});
//# sourceMappingURL=setup.js.map